Gestion des données : NumPy et Pandas¶
Python est devenu le premier langage scientifiques. Il est ainsi possible de gérer l’ensemble des phases d’une analyse de données d’économistes.
On pourrait résumer l’analyse empirique à 3 étapes :
Collecte des données (sources, …)
Chargement des données
Traitement des données (valeurs manquantes, proxy, …)
Visualisation des données
Modèle statistiques
Nous commencerons directement au point numéro 2 tout en mentionnant que de nombreux modules existent afi nde récupérer des données directement sur internet via Python. Voici une liste non exhaustive:
import quandl
import dbnomics
Si il n’existe pas de module spécifique, il existe des fonctions dans le module Panda
que l’on va beaucoup utiliser. Un chapitre explorera cette possibilité mais ne sera pas exposée durant ce cours.
Chargement des données : méthode open()¶
Répertoire de travail¶
Ces données peuvent se situer sur le web ou sur votre ordinateur. Lorsque vous lancer Python ou Jupyter, vous le faite dans ce qu’on appel un répertoire de travail. Le répertoire contenant le notebook ou le porgramme est le répertoire courant. Lorsqu’on indiquera à Python d’importer des données, il faudra:
utiliser un chemin absolu et rentrer le chemin vers le fichier de données. Un chemin absolu commence toujours par
/
utiliser un chemin relative, l’origine sera alors le répertoire courant
Pour travailler avec différents répertoire, le module os
peut-êtyre utile. Par exemple, on peut afficher dans Python le répertoire courant :
import os
cwd = os.getcwd()
print(cwd)
/home/user1/Nextcloud/Cours/Informatique/Python/intro_data_science/python_tutorial
Le module os
propose plusieurs fonctions très utile.
La fonction
chdir()
permet de changer le répertoire courantLa fonction
listdir()
permet de lister tous les documents et répertoires contenus dans le répertoire courant ou dans n’importe quel répertoire si le paramètrepath
renseigne le chemin.…
Chargement à partir d’un fichier csv¶
Pour charger un fichier, on utilise la fonction open()
puis on fait appel à la méthode reader()
du module csv
. Généralement, on utilise cette fonction dans un bloc with
. Un fichier ouvert dans with
est automatiquement refermé à la fin. Si on n’utilise pas ce bloc, il faut impérativement refermer le fichier après les opérations faites dessus afin d’éviter d’encombrer la mémoire !
import csv
with open('./data/25.csv') as doubs:
doubs_reader = csv.reader(doubs, delimiter=',', quotechar='"')
data = [x for x in doubs_reader]
print(data)
print(type(data))
[['id_mutation', 'date_mutation', 'numero_disposition', 'nature_mutation', 'valeur_fonciere', 'adresse_numero', 'adresse_suffixe', 'adresse_nom_voie', 'adresse_code_voie', 'code_postal', 'code_commune', 'nom_commune', 'code_departement', 'ancien_code_commune', 'ancien_nom_commune', 'id_parcelle', 'ancien_id_parcelle', 'numero_volume', 'lot1_numero', 'lot1_surface_carrez', 'lot2_numero', 'lot2_surface_carrez', 'lot3_numero', 'lot3_surface_carrez', 'lot4_numero', 'lot4_surface_carrez', 'lot5_numero', 'lot5_surface_carrez', 'nombre_lots', 'code_type_local', 'type_local', 'surface_reelle_bati', 'nombre_pieces_principales', 'code_nature_culture', 'nature_culture', 'code_nature_culture_speciale', 'nature_culture_speciale', 'surface_terrain', 'longitude', 'latitude'], ['2019-73036', '2019-02-25', '000001', 'Vente', '200000', '', '', 'AU VILLAGE', 'B037', '25640', '25490', 'Rigney', '25', '', '', '25490000ZK0354', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '2260', '6.178685', '47.388526'], ['2019-73036', '2019-02-25', '000001', 'Vente', '200000', '', '', 'AU VILLAGE', 'B037', '25640', '25490', 'Rigney', '25', '', '', '25490000ZK0354', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '2792', '6.178685', '47.388526'], ['2019-73036', '2019-02-25', '000002', 'Vente', '200000', '', '', 'AU VILLAGE', 'B037', '25640', '25490', 'Rigney', '25', '', '', '25490000ZK0354', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '2260', '6.178685', '47.388526'], ['2019-73036', '2019-02-25', '000002', 'Vente', '200000', '', '', 'AU VILLAGE', 'B037', '25640', '25490', 'Rigney', '25', '', '', '25490000ZK0354', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '2792', '6.178685', '47.388526'], ['2019-73037', '2019-03-09', '000002', 'Vente', '277450', '2', '', 'CHE DES ESSARTS', '1890', '25000', '25056', 'Besançon', '25', '', '', '25056000OW0382', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '284', '6.010203', '47.268524'], ['2019-73037', '2019-03-09', '000002', 'Vente', '277450', '2', '', 'CHE DES ESSARTS', '1890', '25000', '25056', 'Besançon', '25', '', '', '25056000OW0383', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '24', '6.010258', '47.268593'], ['2019-73037', '2019-03-09', '000002', 'Vente', '277450', '2', '', 'CHE DES ESSARTS', '1890', '25000', '25056', 'Besançon', '25', '', '', '25056000OW0384', '', '', '', '', '', '', '', '', '', '', '', '', '0', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.010475', '47.268349'], ['2019-73038', '2019-03-09', '000001', 'Vente', '76250', '2', '', 'CHE DES ESSARTS', '1890', '25000', '25056', 'Besançon', '25', '', '', '25056000OW0381', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '139', '5', 'S', 'sols', '', '', '126', '6.010398', '47.268616'], ['2019-73039', '2019-03-25', '000001', 'Vente', '251650', '5123', '', 'GRANGES DU CHAMP DU FOURNE', 'B059', '25440', '25109', 'Cessey', '25', '', '', '25109000AC0169', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '166', '7', 'S', 'sols', '', '', '800', '5.935817', '47.128046'], ['2019-73039', '2019-03-25', '000001', 'Vente', '251650', '5123', '', 'GRANGES DU CHAMP DU FOURNE', 'B059', '25440', '25109', 'Cessey', '25', '', '', '25109000AC0169', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '166', '7', 'AG', "terrains d'agrément", '', '', '852', '5.935817', '47.128046'], ['2019-73040', '2019-04-01', '000001', "Vente en l'état futur d'achèvement", '205600', '', '', 'A PRAND', 'B107', '25480', '25454', 'Pirey', '25', '', '', '25454000AH0259', '', '', '22', '', '', '', '', '', '', '', '', '', '1', '', '', '', '', '', '', '', '', '', '5.965378', '47.258764'], ['2019-73040', '2019-04-01', '000001', "Vente en l'état futur d'achèvement", '205600', '', '', 'A PRAND', 'B107', '25480', '25454', 'Pirey', '25', '', '', '25454000AH0259', '', '', '20', '', '', '', '', '', '', '', '', '', '1', '', '', '', '', '', '', '', '', '', '5.965378', '47.258764'], ['2019-73041', '2019-03-11', '000001', 'Vente', '601176', '', '', 'SOUS LES TILLEROYES', 'B267', '25000', '25056', 'Besançon', '25', '', '', '25056000MW0399', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '572', '5.97357', '47.235445'], ['2019-73041', '2019-03-11', '000001', 'Vente', '601176', '', '', 'CHE DU SANATORIUM', '4690', '25000', '25056', 'Besançon', '25', '', '', '25056000MW0410', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '385', '5.972884', '47.235189'], ['2019-73041', '2019-03-11', '000001', 'Vente', '601176', '', '', 'SOUS LES TILLEROYES', 'B267', '25000', '25056', 'Besançon', '25', '', '', '25056000MW0415', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '603', '5.973229', '47.235323'], ['2019-73041', '2019-03-11', '000001', 'Vente', '601176', '', '', 'SOUS LES TILLEROYES', 'B267', '25000', '25056', 'Besançon', '25', '', '', '25056000MW0418', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '293', '5.973384', '47.235391'], ['2019-73041', '2019-03-11', '000001', 'Vente', '601176', '', '', 'SOUS LES TILLEROYES', 'B267', '25000', '25056', 'Besançon', '25', '', '', '25056000MW0421', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '219', '5.972961', '47.235275'], ['2019-73041', '2019-03-11', '000001', 'Vente', '601176', '', '', 'SOUS LES TILLEROYES', 'B267', '25000', '25056', 'Besançon', '25', '', '', '25056000MW0424', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'VE', 'vergers', '', '', '1293', '5.97434', '47.235558'], ['2019-73042', '2019-03-12', '000001', "Vente en l'état futur d'achèvement", '370000', '19', '', 'CHE DU FORT BENOIT', '2060', '25000', '25056', 'Besançon', '25', '', '', '25056000CE0044', '', '', '79', '', '', '', '', '', '', '', '', '', '1', '', '', '', '', '', '', '', '', '', '6.052679', '47.259275'], ['2019-73042', '2019-03-12', '000001', "Vente en l'état futur d'achèvement", '370000', '19', '', 'CHE DU FORT BENOIT', '2060', '25000', '25056', 'Besançon', '25', '', '', '25056000CE0044', '', '', '56', '', '', '', '', '', '', '', '', '', '1', '', '', '', '', '', '', '', '', '', '6.052679', '47.259275'], ['2019-73042', '2019-03-12', '000001', "Vente en l'état futur d'achèvement", '370000', '19', '', 'CHE DU FORT BENOIT', '2060', '25000', '25056', 'Besançon', '25', '', '', '25056000CE0044', '', '', '33', '', '', '', '', '', '', '', '', '', '1', '', '', '', '', '', '', '', '', '', '6.052679', '47.259275'], ['2019-73042', '2019-03-12', '000001', "Vente en l'état futur d'achèvement", '370000', '19', '', 'CHE DU FORT BENOIT', '2060', '25000', '25056', 'Besançon', '25', '', '', '25056000CE0044', '', '', '74', '', '', '', '', '', '', '', '', '', '1', '', '', '', '', '', '', '', '', '', '6.052679', '47.259275'], ['2019-73043', '2019-03-27', '000001', "Vente en l'état futur d'achèvement", '285000', '2', 'B', 'ALL DOCTEUR MAITRE', '1612', '25000', '25056', 'Besançon', '25', '', '', '25056000BI0332', '', '', '23', '', '25', '', '7', '', '', '', '', '', '3', '2', 'Appartement', '91', '4', '', '', '', '', '', '6.020371', '47.255286'], ['2019-73044', '2019-04-08', '000001', 'Vente', '86000', '', '', 'LES ARDOTS', 'B001', '25870', '25265', 'Geneuille', '25', '', '', '25265000AD0605', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'AB', 'terrains a bâtir', '', '', '913', '5.96775', '47.322781'], ['2019-73045', '2019-03-13', '000001', 'Vente', '159000', '10', '', 'RUE COURVOISIER', '0009', '25260', '25345', 'Longevelle-sur-Doubs', '25', '', '', '25345000ZD0221', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '121', '7', 'S', 'sols', '', '', '628', '6.649923', '47.454307'], ['2019-73045', '2019-03-13', '000001', 'Vente', '159000', '', '', 'LES CORNEILLES', 'B072', '25260', '25345', 'Longevelle-sur-Doubs', '25', '', '', '25345000ZD0245', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'T', 'terres', '', '', '170', '6.650082', '47.454321'], ['2019-73046', '2019-03-26', '000001', 'Vente', '226000', '19', '', 'RUE VOYE DE L ISLE', '0080', '25250', '25226', 'Étrappe', '25', '', '', '25226000ZA0080', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '125', '6', 'S', 'sols', '', '', '1016', '6.578618', '47.469529'], ['2019-73047', '2019-04-05', '000001', 'Vente', '78000', '28', 'A', 'RUE DE VESOUL', '5160', '25000', '25056', 'Besançon', '25', '', '', '25056000BI0074', '', '', '11', '63.62', '31', '', '', '', '', '', '', '', '2', '2', 'Appartement', '63', '4', '', '', '', '', '', '6.018239', '47.251632'], ['2019-73048', '2019-03-21', '000001', 'Vente', '81500', '17', '', 'AV CHARLES SIFFERT', '1080', '25000', '25056', 'Besançon', '25', '', '', '25056000HY0007', '', '', '12', '101.07', '', '', '', '', '', '', '', '', '1', '4', 'Local industriel. commercial ou assimilé', '95', '0', '', '', '', '', '', '6.015127', '47.24185'], ['2019-73048', '2019-03-21', '000001', 'Vente', '81500', '17', '', 'AV CHARLES SIFFERT', '1080', '25000', '25056', 'Besançon', '25', '', '', '25056000HY0007', '', '', '39', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.015127', '47.24185'], ['2019-73049', '2019-03-12', '000001', 'Vente', '206000', '3', '', 'RUE DU DOCTEUR GIRARDOT', '1590', '25000', '25056', 'Besançon', '25', '', '', '25056000DZ0126', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '87', '4', 'S', 'sols', '', '', '468', '5.996263', '47.227774'], ['2019-73050', '2019-03-15', '000001', "Vente en l'état futur d'achèvement", '66000', '20', '', 'AV FONTAINE ARGENT', '2030', '25000', '25056', 'Besançon', '25', '', '', '25056000CW0178', '', '', '53', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.032833', '47.244504'], ['2019-73050', '2019-03-15', '000001', "Vente en l'état futur d'achèvement", '66000', '11', '', 'RUE BEAUREGARD', '0380', '25000', '25056', 'Besançon', '25', '', '', '25056000CW0178', '', '', '50', '', '', '', '', '', '', '', '', '', '1', '', '', '', '', '', '', '', '', '', '6.032833', '47.244504'], ['2019-73050', '2019-03-15', '000001', "Vente en l'état futur d'achèvement", '66000', '20', '', 'AV FONTAINE ARGENT', '2030', '25000', '25056', 'Besançon', '25', '', '', '25056000CW0178', '', '', '52', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.032833', '47.244504'], ['2019-73050', '2019-03-15', '000001', "Vente en l'état futur d'achèvement", '66000', '11', '', 'RUE BEAUREGARD', '0380', '25000', '25056', 'Besançon', '25', '', '', '25056000CW0178', '', '', '13', '', '', '', '', '', '', '', '', '', '1', '', '', '', '', '', '', '', '', '', '6.032833', '47.244504'], ['2019-73051', '2019-03-29', '000001', 'Vente', '79750', '11', '', 'RUE DU MUGUET', '3610', '25000', '25056', 'Besançon', '25', '', '', '25056000BY0068', '', '', '4', '67.37', '5', '', '6', '', '', '', '', '', '3', '2', 'Appartement', '68', '4', '', '', '', '', '', '6.047337', '47.264985'], ['2019-73052', '2019-04-03', '000001', 'Vente', '8000', '13', '', 'AV DE LA VAITE', '5020', '25000', '25056', 'Besançon', '25', '', '', '25056000CL0088', '', '', '77', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.040617', '47.253966'], ['2019-73053', '2019-04-08', '000001', 'Vente', '8000', '29', 'C', 'CHE DES MONTBOUCONS', '3500', '25000', '25056', 'Besançon', '25', '', '', '25056000NT0241', '', '', '4', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '5.98984', '47.25726'], ['2019-73054', '2019-03-28', '000001', 'Vente', '8500', '10', '', 'RUE DES COURTILS', '1460', '25000', '25056', 'Besançon', '25', '', '', '25056000BY0153', '', '', '106', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.046495', '47.2645'], ['2019-73055', '2019-04-10', '000001', 'Vente', '6200', '31', '', 'AV DE CHARDONNET', '0960', '25000', '25056', 'Besançon', '25', '', '', '25056000CZ0099', '', '', '2', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.039858', '47.23115'], ['2019-73056', '2019-04-03', '000001', 'Vente', '155000', '5', '', 'RUE D ALSACE', '0130', '25000', '25056', 'Besançon', '25', '', '', '25056000AH0054', '', '', '13', '', '17', '68.94', '18', '', '', '', '', '', '3', '2', 'Appartement', '70', '3', '', '', '', '', '', '6.028073', '47.239308'], ['2019-73057', '2019-04-03', '000001', 'Vente', '191933', '57', '', 'CHE DES PRES DE VAUX', '4220', '25000', '25056', 'Besançon', '25', '', '', '25056000DE0039', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '100', '7', 'S', 'sols', '', '', '530', '6.054279', '47.230811'], ['2019-73057', '2019-04-03', '000001', 'Vente', '191933', '57', '', 'CHE DES PRES DE VAUX', '4220', '25000', '25056', 'Besançon', '25', '', '', '25056000DE0039', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '100', '7', 'J', 'jardins', 'POTAG', 'Jardin potager', '1018', '6.054279', '47.230811'], ['2019-73057', '2019-04-03', '000001', 'Vente', '191933', '57', '', 'CHE DES PRES DE VAUX', '4220', '25000', '25056', 'Besançon', '25', '', '', '25056000DE0039', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '100', '7', 'L', 'landes', '', '', '850', '6.054279', '47.230811'], ['2019-73058', '2019-04-09', '000001', 'Vente', '228000', '5', '', 'RUE CHAMP DU SEILLER', '0077', '25640', '25508', 'Roulans', '25', '', '', '25508000AB0517', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '106', '4', 'S', 'sols', '', '', '855', '6.240416', '47.318954'], ['2019-73059', '2019-04-08', '000001', 'Vente', '150500', '1', '', 'RUE DU CHASNOT', '1130', '25000', '25056', 'Besançon', '25', '', '', '25056000BH0457', '', '', '9', '67.04', '', '', '', '', '', '', '', '', '1', '2', 'Appartement', '79', '3', '', '', '', '', '', '6.02701', '47.247254'], ['2019-73060', '2019-04-09', '000001', 'Vente', '242000', '17', '', 'RUE DU BELVEDERE', '0150', '25110', '25047', 'Baume-les-Dames', '25', '', '', '25047000AX0095', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '105', '5', 'S', 'sols', '', '', '500', '6.350524', '47.341083'], ['2019-73060', '2019-04-09', '000001', 'Vente', '242000', '17', '', 'RUE DU BELVEDERE', '0150', '25110', '25047', 'Baume-les-Dames', '25', '', '', '25047000AX0095', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '105', '5', 'AG', "terrains d'agrément", '', '', '1452', '6.350524', '47.341083'], ['2019-73061', '2019-04-09', '000001', 'Vente', '115000', '23', 'B', 'RUE DE VESOUL', '5160', '25000', '25056', 'Besançon', '25', '', '', '25056000HW0575', '', '', '632', '', '692', '62.94', '', '', '', '', '', '', '2', '2', 'Appartement', '63', '3', '', '', '', '', '', '6.019921', '47.248271'], ['2019-73061', '2019-04-09', '000001', 'Vente', '115000', '21', '', 'RUE DE VESOUL', '5160', '25000', '25056', 'Besançon', '25', '', '', '25056000HW0575', '', '', '461', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.019921', '47.248271'], ['2019-73062', '2019-04-08', '000001', 'Vente', '780', '', '', 'AU PAUTET', 'B106', '25320', '25287', 'Grandfontaine', '25', '', '', '25287000AB0075', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'BT', 'taillis simples', '', '', '6', '5.894675', '47.199222'], ['2019-73063', '2019-04-09', '000001', "Vente en l'état futur d'achèvement", '208400', '2', '', 'CHE DE LA PLANCHE', '0152', '25770', '25258', 'Franois', '25', '', '', '25258000AC0196', '', '', '20', '', '', '', '', '', '', '', '', '', '1', '', '', '', '', '', '', '', '', '', '5.93859', '47.229168'], ['2019-73063', '2019-04-09', '000001', "Vente en l'état futur d'achèvement", '208400', '2', '', 'CHE DE LA PLANCHE', '0152', '25770', '25258', 'Franois', '25', '', '', '25258000AC0196', '', '', '16', '', '', '', '', '', '', '', '', '', '1', '', '', '', '', '', '', '', '', '', '5.93859', '47.229168'], ['2019-73063', '2019-04-09', '000001', "Vente en l'état futur d'achèvement", '208400', '2', '', 'CHE DE LA PLANCHE', '0152', '25770', '25258', 'Franois', '25', '', '', '25258000AC0196', '', '', '22', '', '', '', '', '', '', '', '', '', '1', '', '', '', '', '', '', '', '', '', '5.93859', '47.229168'], ['2019-73064', '2019-03-22', '000001', 'Vente', '60000', '', '', 'VILLAGE', 'B044', '25870', '25612', 'Vieilley', '25', '', '', '25612000AB0103', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'J', 'jardins', '', '', '35', '6.080034', '47.336893'], ['2019-73064', '2019-03-22', '000001', 'Vente', '60000', '10', '', 'RTE DE MARCHAUX', '0028', '25870', '25612', 'Vieilley', '25', '', '', '25612000AB0106', '', '', '10', '', '2', '135.89', '8', '', '', '', '', '', '3', '2', 'Appartement', '126', '4', '', '', '', '', '', '6.079714', '47.336808'], ['2019-73065', '2019-03-29', '000001', 'Vente', '100000', '62', '', 'GR GRANDE RUE', '0100', '25820', '25323', 'Laissey', '25', '', '', '25323000AB0276', '', '', '3', '', '4', '8.83', '', '', '', '', '', '', '2', '2', 'Appartement', '106', '5', '', '', '', '', '', '6.233722', '47.298367'], ['2019-73065', '2019-03-29', '000001', 'Vente', '100000', '62', '', 'GR GRANDE RUE', '0100', '25820', '25323', 'Laissey', '25', '', '', '25323000AB0276', '', '', '2', '', '8', '160.93', '', '', '', '', '', '', '2', '4', 'Local industriel. commercial ou assimilé', '243', '0', '', '', '', '', '', '6.233722', '47.298367'], ['2019-73065', '2019-03-29', '000001', 'Vente', '100000', '', '', 'CHAMP DERRIERE LA GRANGERI', 'B020', '25820', '25323', 'Laissey', '25', '', '', '25323000AB0280', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'J', 'jardins', '', '', '409', '6.233939', '47.298448'], ['2019-73066', '2019-03-28', '000001', 'Vente', '78100', '1', '', 'RUE MARC BLOCH', '3286', '25000', '25056', 'Besançon', '25', '', '', '25056000EP0263', '', '', '99', '93.7', '', '', '', '', '', '', '', '', '1', '2', 'Appartement', '87', '4', '', '', '', '', '', '5.969947', '47.217754'], ['2019-73066', '2019-03-28', '000001', 'Vente', '78100', '1', '', 'RUE MARC BLOCH', '3286', '25000', '25056', 'Besançon', '25', '', '', '25056000EP0263', '', '', '31', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '5.969947', '47.217754'], ['2019-73067', '2019-03-28', '000001', 'Vente', '35183.96', '', '', 'BOIS CARRE', 'C002', '25110', '25047', 'Baume-les-Dames', '25', '', '', '25047000BA0208', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'AB', 'terrains a bâtir', '', '', '980', '6.33667', '47.352739'], ['2019-73068', '2019-02-25', '000001', 'Vente', '165000', '47', '', 'LES VERNES', 'B060', '25870', '25200', 'Devecey', '25', '', '', '25200000AI0467', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '100', '5', 'S', 'sols', '', '', '523', '6.011204', '47.324913'], ['2019-73069', '2019-03-21', '000001', 'Vente', '1600', '', '', 'LES VAUCHES', 'B232', '25660', '25245', 'Fontain', '25', '', '', '25245000ZM0010', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'BT', 'taillis simples', '', '', '8341', '6.022924', '47.207125'], ['2019-73070', '2019-04-15', '000001', 'Vente', '450000', '8', '', 'RUE JACQUARD', '2755', '25000', '25056', 'Besançon', '25', '', '', '25056000HN0161', '', '', '378', '', '', '', '', '', '', '', '', '', '1', '4', 'Local industriel. commercial ou assimilé', '87', '0', '', '', '', '', '', '5.994523', '47.238857'], ['2019-73070', '2019-04-15', '000001', 'Vente', '450000', '8', '', 'RUE JACQUARD', '2755', '25000', '25056', 'Besançon', '25', '', '', '25056000HN0161', '', '', '378', '', '', '', '', '', '', '', '', '', '1', '4', 'Local industriel. commercial ou assimilé', '69', '0', '', '', '', '', '', '5.994523', '47.238857'], ['2019-73070', '2019-04-15', '000001', 'Vente', '450000', '8', '', 'RUE JACQUARD', '2755', '25000', '25056', 'Besançon', '25', '', '', '25056000HN0161', '', '', '378', '', '', '', '', '', '', '', '', '', '1', '4', 'Local industriel. commercial ou assimilé', '247', '0', '', '', '', '', '', '5.994523', '47.238857'], ['2019-73070', '2019-04-15', '000001', 'Vente', '450000', '8', '', 'RUE JACQUARD', '2755', '25000', '25056', 'Besançon', '25', '', '', '25056000HN0161', '', '', '378', '', '', '', '', '', '', '', '', '', '1', '4', 'Local industriel. commercial ou assimilé', '60', '0', '', '', '', '', '', '5.994523', '47.238857'], ['2019-73070', '2019-04-15', '000001', 'Vente', '450000', '8', '', 'RUE JACQUARD', '2755', '25000', '25056', 'Besançon', '25', '', '', '25056000HN0161', '', '', '393', '', '', '', '', '', '', '', '', '', '1', '4', 'Local industriel. commercial ou assimilé', '332', '0', '', '', '', '', '', '5.994523', '47.238857'], ['2019-73070', '2019-04-15', '000001', 'Vente', '450000', '8', '', 'RUE JACQUARD', '2755', '25000', '25056', 'Besançon', '25', '', '', '25056000HN0161', '', '', '394', '', '395', '', '396', '', '397', '', '399', '', '40', '4', 'Local industriel. commercial ou assimilé', '334', '0', '', '', '', '', '', '5.994523', '47.238857'], ['2019-73071', '2019-04-15', '000001', 'Vente', '20000', '', '', 'CONNOTIERE', 'B027', '25720', '25058', 'Beure', '25', '', '', '25058000AB0057', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'VE', 'vergers', '', '', '796', '6.000663', '47.211775'], ['2019-73072', '2019-04-04', '000001', 'Vente', '28000', '23', '', 'RUE 7EME ARMEE AMERICAINE', '4750', '25000', '25056', 'Besançon', '25', '', '', '25056000KR0021', '', '', '3', '33.95', '', '', '', '', '', '', '', '', '1', '2', 'Appartement', '33', '1', '', '', '', '', '', '6.01748', '47.216813'], ['2019-73073', '2019-04-11', '000001', 'Vente', '110000', '131', '', 'RUE DE BELFORT', '0390', '25000', '25056', 'Besançon', '25', '', '', '25056000BP0213', '', '', '576', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.036537', '47.253709'], ['2019-73073', '2019-04-11', '000001', 'Vente', '110000', '9', '', 'CITE PARC DES CHAPRAIS', '0955', '25000', '25056', 'Besançon', '25', '', '', '25056000BP0213', '', '', '251', '', '261', '61.58', '', '', '', '', '', '', '2', '2', 'Appartement', '68', '4', '', '', '', '', '', '6.036537', '47.253709'], ['2019-73074', '2019-04-11', '000001', 'Vente', '100000', '76', '', 'RUE DE VESOUL', '5160', '25000', '25056', 'Besançon', '25', '', '', '25056000BL0111', '', '', '135', '17.9', '136', '17.4', '144', '42.14', '172', '', '', '', '4', '4', 'Local industriel. commercial ou assimilé', '44', '0', '', '', '', '', '', '6.012625', '47.256766'], ['2019-73075', '2019-04-12', '000001', 'Vente', '254500', '2', 'B', 'RUE DES MAISONS NEUVES', '0029', '25320', '25147', 'Chemaudin et Vaux', '25', '', '', '25147000AA0231', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '130', '5', 'S', 'sols', '', '', '719', '5.891686', '47.224765'], ['2019-73076', '2019-04-15', '000001', 'Vente', '81150', '7', '', 'AV VILLARCEAU', '5280', '25000', '25056', 'Besançon', '25', '', '', '25056000HZ0010', '', '', '24', '', '37', '53.24', '', '', '', '', '', '', '2', '2', 'Appartement', '53', '2', '', '', '', '', '', '6.008254', '47.236082'], ['2019-73076', '2019-04-15', '000001', 'Vente', '81150', '7', '', 'AV VILLARCEAU', '5280', '25000', '25056', 'Besançon', '25', '', '', '25056000HZ0010', '', '', '4', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.008254', '47.236082'], ['2019-73077', '2019-04-12', '000001', "Vente en l'état futur d'achèvement", '5000', '2', 'B', 'ALL DOCTEUR MAITRE', '1612', '25000', '25056', 'Besançon', '25', '', '', '25056000BI0332', '', '', '26', '', '', '', '', '', '', '', '', '', '1', '2', 'Appartement', '72', '3', '', '', '', '', '', '6.020371', '47.255286'], ['2019-73078', '2019-04-11', '000001', 'Vente', '80000', '', '', 'VILLAGE', 'B044', '25870', '25612', 'Vieilley', '25', '', '', '25612000AB0088', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'AG', "terrains d'agrément", '', '', '1294', '6.080876', '47.337844'], ['2019-73079', '2019-04-15', '000001', 'Vente', '235000', '14', '', 'RUE DE LA PEROUSE', '0109', '25660', '25395', 'Montfaucon', '25', '', '', '25395000AC0021', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '100', '5', 'S', 'sols', '', '', '1052', '6.086699', '47.234534'], ['2019-73080', '2019-03-29', '000001', 'Vente', '91750', '22', '', 'RUE TRISTAN BERNARD', '4970', '25000', '25056', 'Besançon', '25', '', '', '25056000CT0116', '', '', '21', '', '', '', '', '', '', '', '', '', '1', '2', 'Appartement', '60', '4', '', '', '', '', '', '6.039429', '47.248472'], ['2019-73081', '2019-04-12', '000001', 'Vente', '222000', '1', '', 'RUE VIEILLES PERRIERES', '5230', '25000', '25056', 'Besançon', '25', '', '', '25056000IK0080', '', '', '12', '101.5', '6', '', '', '', '', '', '', '', '2', '2', 'Appartement', '104', '5', '', '', '', '', '', '6.012335', '47.234135'], ['2019-73081', '2019-04-12', '000001', 'Vente', '222000', '1', '', 'RUE VIEILLES PERRIERES', '5230', '25000', '25056', 'Besançon', '25', '', '', '25056000IK0080', '', '', '82', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.012335', '47.234135'], ['2019-73082', '2019-04-16', '000001', 'Vente', '178300', '24', 'B', 'RUE DU BOCHET', '0004', '25170', '25332', 'Lavernay', '25', '', '', '25332000ZB0177', '', '', '1', '91.3', '', '', '', '', '', '', '', '', '1', '1', 'Maison', '83', '3', '', '', '', '', '', '5.824411', '47.249971'], ['2019-73083', '2019-04-12', '000001', 'Vente', '240000', '2', 'D', 'RUE DU QUETIS', '0054', '25410', '25195', 'Dannemarie-sur-Crète', '25', '', '', '25195000AC0303', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '106', '4', 'S', 'sols', '', '', '449', '5.868202', '47.206064'], ['2019-73083', '2019-04-12', '000001', 'Vente', '240000', '', '', 'A LA NOUELLE', 'B062', '25410', '25195', 'Dannemarie-sur-Crète', '25', '', '', '25195000AC0336', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '197', '5.869175', '47.205804'], ['2019-73083', '2019-04-12', '000001', 'Vente', '240000', '', '', 'A LA NOUELLE', 'B062', '25410', '25195', 'Dannemarie-sur-Crète', '25', '', '', '25195000AC0338', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '145', '5.868669', '47.206008'], ['2019-73084', '2019-03-29', '000001', 'Vente', '136800', '', '', 'LA COMBE CONSTANTIN', 'B042', '25360', '25446', 'Passavant', '25', '', '', '25446000AD0253', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '79', '2', 'P', 'prés', '', '', '802', '6.408359', '47.287813'], ['2019-73084', '2019-03-29', '000001', 'Vente', '136800', '', '', 'LA COMBE CONSTANTIN', 'B042', '25360', '25446', 'Passavant', '25', '', '', '25446000AD0253', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '79', '2', 'S', 'sols', '', '', '600', '6.408359', '47.287813'], ['2019-73085', '2019-04-03', '000001', 'Vente', '7000', '38', 'B', 'AV DE L ILE DE FRANCE', '2750', '25000', '25056', 'Besançon', '25', '', '', '25056000LR0042', '', '', '45', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '5.965415', '47.221549'], ['2019-73086', '2019-04-11', '000001', 'Vente', '73100', '13', '', 'RUE PASTEUR', '3860', '25000', '25056', 'Besançon', '25', '', '', '25056000AB0124', '', '', '206', '44.85', '210', '', '', '', '', '', '', '', '2', '2', 'Appartement', '38', '2', '', '', '', '', '', '6.022267', '47.237648'], ['2019-73087', '2019-04-12', '000001', 'Vente', '96900', '13', '', 'CITE PARC DES CHAPRAIS', '0955', '25000', '25056', 'Besançon', '25', '', '', '25056000BP0213', '', '', '351', '', '363', '53.77', '', '', '', '', '', '', '2', '2', 'Appartement', '58', '3', '', '', '', '', '', '6.036537', '47.253709'], ['2019-73088', '2019-04-12', '000001', 'Vente', '40000', '37', 'B', 'CHE DESSUS DE CHAILLUZ', '1545', '25000', '25056', 'Besançon', '25', '', '', '25056000PT0236', '', '', '', '', '', '', '', '', '', '', '', '', '0', '3', 'Dépendance', '', '0', 'S', 'sols', '', '', '543', '6.018475', '47.280192'], ['2019-73088', '2019-04-12', '000001', 'Vente', '40000', '37', 'B', 'CHE DESSUS DE CHAILLUZ', '1545', '25000', '25056', 'Besançon', '25', '', '', '25056000PT0236', '', '', '', '', '', '', '', '', '', '', '', '', '0', '2', 'Appartement', '119', '4', 'S', 'sols', '', '', '543', '6.018475', '47.280192'], ['2019-73088', '2019-04-12', '000001', 'Vente', '40000', '37', 'B', 'CHE DESSUS DE CHAILLUZ', '1545', '25000', '25056', 'Besançon', '25', '', '', '25056000PT0236', '', '', '', '', '', '', '', '', '', '', '', '', '0', '3', 'Dépendance', '', '0', 'S', 'sols', '', '', '543', '6.018475', '47.280192'], ['2019-73088', '2019-04-12', '000001', 'Vente', '40000', '37', 'B', 'CHE DESSUS DE CHAILLUZ', '1545', '25000', '25056', 'Besançon', '25', '', '', '25056000PT0236', '', '', '', '', '', '', '', '', '', '', '', '', '0', '3', 'Dépendance', '', '0', 'S', 'sols', '', '', '543', '6.018475', '47.280192'], ['2019-73089', '2019-04-11', '000001', 'Vente', '142000', '70', '', 'RUE DES GRANGES', '2510', '25000', '25056', 'Besançon', '25', '', '', '25056000AC0082', '', '', '3', '', '9', '95.16', '', '', '', '', '', '', '2', '2', 'Appartement', '93', '4', '', '', '', '', '', '6.026867', '47.236922'], ['2019-73090', '2019-04-11', '000001', 'Vente', '99500', '58', '', 'RUE DE VESOUL', '5160', '25000', '25056', 'Besançon', '25', '', '', '25056000BK0113', '', '', '46', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.014931', '47.254683'], ['2019-73090', '2019-04-11', '000001', 'Vente', '99500', '58', '', 'RUE DE VESOUL', '5160', '25000', '25056', 'Besançon', '25', '', '', '25056000BK0113', '', '', '23', '', '40', '73.85', '', '', '', '', '', '', '2', '2', 'Appartement', '80', '3', '', '', '', '', '', '6.014931', '47.254683'], ['2019-73091', '2019-04-08', '000001', 'Vente', '53000', '1', '', 'RUE DES ROCHES', '4530', '25000', '25056', 'Besançon', '25', '', '', '25056000BS0235', '', '', '13', '', '48', '', '', '', '', '', '', '', '2', '2', 'Appartement', '25', '1', '', '', '', '', '', '6.035222', '47.257264'], ['2019-73091', '2019-04-08', '000001', 'Vente', '53000', '1', '', 'RUE DES ROCHES', '4530', '25000', '25056', 'Besançon', '25', '', '', '25056000BS0235', '', '', '78', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.035222', '47.257264'], ['2019-73092', '2019-03-22', '000002', 'Vente', '500', '', '', 'AU CHATELARD', 'B040', '25870', '25133', 'Châtillon-le-Duc', '25', '', '', '25133000AD0235', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'BT', 'taillis simples', '', '', '70', '6.012482', '47.307348'], ['2019-73093', '2019-04-05', '000001', 'Vente', '155600', '17', '', 'RUE MATHIAS ULLMANN', '3381', '25000', '25056', 'Besançon', '25', '', '', '25056000HI0069', '', '', '12', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '5.985376', '47.254924'], ['2019-73093', '2019-04-05', '000001', 'Vente', '155600', '17', '', 'RUE MATHIAS ULLMANN', '3381', '25000', '25056', 'Besançon', '25', '', '', '25056000HI0069', '', '', '44', '57.21', '', '', '', '', '', '', '', '', '1', '2', 'Appartement', '57', '1', '', '', '', '', '', '5.985376', '47.254924'], ['2019-73094', '2019-04-15', '000001', 'Vente', '90000', '30', '', 'RUE NARCISSE LANCHY', '3630', '25000', '25056', 'Besançon', '25', '', '', '25056000BS0237', '', '', '16', '', '23', '48.11', '', '', '', '', '', '', '2', '2', 'Appartement', '47', '2', '', '', '', '', '', '6.028518', '47.25699'], ['2019-73094', '2019-04-15', '000001', 'Vente', '90000', '30', '', 'RUE NARCISSE LANCHY', '3630', '25000', '25056', 'Besançon', '25', '', '', '25056000BS0237', '', '', '9', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.028518', '47.25699'], ['2019-73095', '2019-04-05', '000001', 'Vente', '254100', '12', 'C', 'RUE DU REPOS', '0150', '25720', '25058', 'Beure', '25', '', '', '25058000AI0070', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '121', '6', 'S', 'sols', '', '', '800', '6.000709', '47.205169'], ['2019-73096', '2019-04-17', '000001', 'Vente', '116000', '1', '', 'RUE SOPHIE TREBUCHET', '4769', '25000', '25056', 'Besançon', '25', '', '', '25056000CO0142', '', '', '406', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.056444', '47.245477'], ['2019-73096', '2019-04-17', '000001', 'Vente', '116000', '3', '', 'RUE SOPHIE TREBUCHET', '4769', '25000', '25056', 'Besançon', '25', '', '', '25056000CO0142', '', '', '145', '10.4', '275', '56.77', '', '', '', '', '', '', '2', '2', 'Appartement', '67', '3', '', '', '', '', '', '6.056444', '47.245477'], ['2019-73096', '2019-04-17', '000001', 'Vente', '116000', '1', '', 'RUE SOPHIE TREBUCHET', '4769', '25000', '25056', 'Besançon', '25', '', '', '25056000CO0142', '', '', '26', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.056444', '47.245477'], ['2019-73097', '2019-04-10', '000001', 'Vente', '8500', '23', '', 'RUE JEAN WYRSCH', '2860', '25000', '25056', 'Besançon', '25', '', '', '25056000BK0050', '', '', '216', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.019662', '47.258133'], ['2019-73098', '2019-04-17', '000001', 'Vente', '255000', '6', 'B', 'CHE DES RAGOTS', '4340', '25000', '25056', 'Besançon', '25', '', '', '25056000CY0221', '', '', '2', '', '34', '63.8', '', '', '', '', '', '', '2', '2', 'Appartement', '63', '3', '', '', '', '', '', '6.036715', '47.2369'], ['2019-73098', '2019-04-17', '000001', 'Vente', '255000', '6', 'B', 'CHE DES RAGOTS', '4340', '25000', '25056', 'Besançon', '25', '', '', '25056000CY0221', '', '', '14', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.036715', '47.2369'], ['2019-73099', '2019-03-22', '000001', 'Vente', '63990', '13', 'G', 'RUE DE LA MOUILLERE', '3580', '25000', '25056', 'Besançon', '25', '', '', '25056000CW0249', '', '', '217', '', '228', '28.5', '', '', '', '', '', '', '2', '2', 'Appartement', '31', '1', '', '', '', '', '', '6.032534', '47.24341'], ['2019-73100', '2019-04-18', '000001', 'Vente', '6000', '', '', 'A ROUGEAU', 'B118', '25480', '25454', 'Pirey', '25', '', '', '254540000A0274', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '1025', '5.954487', '47.264545'], ['2019-73100', '2019-04-18', '000001', 'Vente', '6000', '', '', 'A ROUGEAU', 'B118', '25480', '25454', 'Pirey', '25', '', '', '254540000A0275', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '1000', '5.954202', '47.264412'], ['2019-73100', '2019-04-18', '000001', 'Vente', '6000', '', '', 'A ROUGEAU', 'B118', '25480', '25454', 'Pirey', '25', '', '', '254540000A0277', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'BT', 'taillis simples', '', '', '1045', '5.954467', '47.26385'], ['2019-73100', '2019-04-18', '000001', 'Vente', '6000', '', '', 'A ROUGEAU', 'B118', '25480', '25454', 'Pirey', '25', '', '', '254540000A0278', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '2065', '5.954103', '47.263773'], ['2019-73100', '2019-04-18', '000001', 'Vente', '6000', '', '', 'A ROUGEAU', 'B118', '25480', '25454', 'Pirey', '25', '', '', '254540000A0280', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'L', 'landes', 'FRICH', 'Friche', '535', '5.954069', '47.26355'], ['2019-73100', '2019-04-18', '000001', 'Vente', '6000', '', '', 'A ROUGEAU', 'B118', '25480', '25454', 'Pirey', '25', '', '', '254540000A0365', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '1260', '5.958906', '47.26627'], ['2019-73100', '2019-04-18', '000001', 'Vente', '6000', '', '', 'AU DESSUS DE ROUGEAU', 'B063', '25480', '25454', 'Pirey', '25', '', '', '254540000A0392', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'T', 'terres', '', '', '1692', '5.958642', '47.264402'], ['2019-73100', '2019-04-18', '000001', 'Vente', '6000', '', '', 'AUX ECORCHEVEY', 'B065', '25480', '25454', 'Pirey', '25', '', '', '254540000A0634', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'BT', 'taillis simples', '', '', '2890', '5.955411', '47.270257'], ['2019-73100', '2019-04-18', '000001', 'Vente', '6000', '', '', 'AUX ORBEUX', 'B001', '25480', '25454', 'Pirey', '25', '', '', '254540000A0666', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'L', 'landes', 'FRICH', 'Friche', '475', '5.959645', '47.270721'], ['2019-73100', '2019-04-18', '000001', 'Vente', '6000', '', '', 'A VIGNOLE', 'B137', '25480', '25454', 'Pirey', '25', '', '', '254540000A1422', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'L', 'landes', 'FRICH', 'Friche', '870', '5.96459', '47.266804'], ['2019-73100', '2019-04-18', '000001', 'Vente', '6000', '', '', 'A LAVAUX', 'B086', '25480', '25454', 'Pirey', '25', '', '', '254540000B0060', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'T', 'terres', '', '', '4480', '5.973345', '47.268843'], ['2019-73100', '2019-04-18', '000001', 'Vente', '6000', '', '', 'AUX ECOULOTTES', 'B067', '25480', '25454', 'Pirey', '25', '', '', '254540000B0244', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '2060', '5.969531', '47.268075'], ['2019-73100', '2019-04-18', '000001', 'Vente', '6000', '', '', 'AU BOUT DE LA COTE', 'B014', '25115', '25467', 'Pouilley-les-Vignes', '25', '', '', '254670000B0587', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '3200', '5.953541', '47.273542'], ['2019-73100', '2019-04-18', '000001', 'Vente', '6000', '', '', 'A ROUJAU', 'B180', '25115', '25467', 'Pouilley-les-Vignes', '25', '', '', '254670000C0180', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '4550', '5.953727', '47.264398'], ['2019-73101', '2019-04-17', '000001', 'Vente', '6000', '11', '', 'RUE ALFRED DE VIGNY', '0085', '25000', '25056', 'Besançon', '25', '', '', '25056000EN0513', '', '', '282', '', '', '', '', '', '', '', '', '', '1', '4', 'Local industriel. commercial ou assimilé', '8', '0', '', '', '', '', '', '5.9633', '47.215825'], ['2019-73102', '2019-04-11', '000001', 'Vente', '69000', '26', '', 'RUE DE BELFORT', '0390', '25000', '25056', 'Besançon', '25', '', '', '25056000CV0029', '', '', '20', '', '4', '66.83', '', '', '', '', '', '', '2', '2', 'Appartement', '67', '3', '', '', '', '', '', '6.02799', '47.24718'], ['2019-73103', '2019-04-18', '000001', 'Vente', '182000', '3', 'B', 'CHE DU CHATEAU DE VREGILLE', '1143', '25000', '25056', 'Besançon', '25', '', '', '25056000MZ0101', '', '', '204', '', '217', '', '', '', '', '', '', '', '2', '2', 'Appartement', '92', '4', '', '', '', '', '', '5.976546', '47.243245'], ['2019-73103', '2019-04-18', '000001', 'Vente', '182000', '3', 'B', 'CHE DU CHATEAU DE VREGILLE', '1143', '25000', '25056', 'Besançon', '25', '', '', '25056000MZ0101', '', '', '209', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '5.976546', '47.243245'], ['2019-73103', '2019-04-18', '000001', 'Vente', '182000', '3', 'A', 'CHE DU CHATEAU DE VREGILLE', '1143', '25000', '25056', 'Besançon', '25', '', '', '25056000MZ0101', '', '', '11', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '5.976546', '47.243245'], ['2019-73104', '2019-04-15', '000001', 'Vente', '322800', '181', '', 'RUE DE BELFORT', '0390', '25000', '25056', 'Besançon', '25', '', '', '25056000BR0125', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '113', '6', 'S', 'sols', '', '', '1024', '6.043731', '47.258293'], ['2019-73104', '2019-04-15', '000001', 'Vente', '322800', '181', '', 'RUE DE BELFORT', '0390', '25000', '25056', 'Besançon', '25', '', '', '25056000BR0125', '', '', '', '', '', '', '', '', '', '', '', '', '0', '3', 'Dépendance', '', '0', 'S', 'sols', '', '', '1024', '6.043731', '47.258293'], ['2019-73105', '2019-04-18', '000001', 'Vente', '187000', '30', '', 'CHE DES TILLEROYES', '4900', '25000', '25056', 'Besançon', '25', '', '', '25056000MY0058', '', '', '454', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '5.979454', '47.241461'], ['2019-73105', '2019-04-18', '000001', 'Vente', '187000', '30', '', 'CHE DES TILLEROYES', '4900', '25000', '25056', 'Besançon', '25', '', '', '25056000MY0058', '', '', '11', '', '', '', '', '', '', '', '', '', '1', '2', 'Appartement', '72', '3', '', '', '', '', '', '5.979454', '47.241461'], ['2019-73105', '2019-04-18', '000001', 'Vente', '187000', '30', '', 'CHE DES TILLEROYES', '4900', '25000', '25056', 'Besançon', '25', '', '', '25056000MY0058', '', '', '611', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '5.979454', '47.241461'], ['2019-73106', '2019-03-27', '000001', 'Vente', '99000', '9', '', "ALL DE L'ILE AUX MOINEAUX", '2715', '25000', '25056', 'Besançon', '25', '', '', '25056000CX0203', '', '', '3', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.034791', '47.239185'], ['2019-73106', '2019-03-27', '000001', 'Vente', '99000', '9', '', "ALL DE L'ILE AUX MOINEAUX", '2715', '25000', '25056', 'Besançon', '25', '', '', '25056000CX0203', '', '', '103', '39.66', '72', '', '', '', '', '', '', '', '2', '2', 'Appartement', '39', '2', '', '', '', '', '', '6.034791', '47.239185'], ['2019-73107', '2019-03-27', '000001', 'Vente', '246200', '5123', '', 'SUR LE RANG', 'B084', '25170', '25101', 'Burgille', '25', '', '', '25101000ZB0126', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '165', '4', 'S', 'sols', '', '', '1505', '5.774606', '47.264855'], ['2019-73108', '2019-04-18', '000001', 'Vente', '64700', '16', '', 'RUE DE VESOUL', '5160', '25000', '25056', 'Besançon', '25', '', '', '25056000BI0157', '', '', '145', '', '171', '', '', '', '', '', '', '', '2', '2', 'Appartement', '58', '3', '', '', '', '', '', '6.019834', '47.25063'], ['2019-73108', '2019-04-18', '000001', 'Vente', '64700', '16', '', 'RUE DE VESOUL', '5160', '25000', '25056', 'Besançon', '25', '', '', '25056000BI0157', '', '', '221', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.019834', '47.25063'], ['2019-73109', '2019-03-26', '000001', 'Vente', '43000', '16', '', 'RUE DES FRERES MERCIER', '2200', '25000', '25056', 'Besançon', '25', '', '', '25056000AZ0146', '', '', '2', '20.37', '', '', '', '', '', '', '', '', '1', '2', 'Appartement', '26', '1', '', '', '', '', '', '6.01798', '47.241755'], ['2019-73110', '2019-04-18', '000001', 'Vente', '217500', '22', '', 'RUE JACQUES PREVERT', '2756', '25000', '25056', 'Besançon', '25', '', '', '25056000LS0309', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '115', '5', 'S', 'sols', '', '', '596', '5.960999', '47.215006'], ['2019-73111', '2019-03-28', '000001', 'Vente', '58000', '14', '', 'RUE ISENBART', '2740', '25000', '25056', 'Besançon', '25', '', '', '25056000CW0002', '', '', '167', '', '184', '38.88', '', '', '', '', '', '', '2', '2', 'Appartement', '41', '2', '', '', '', '', '', '6.02557', '47.245773'], ['2019-73112', '2019-03-28', '000001', 'Vente', '232000', '34', '', 'RUE DU CORDIER', '0021', '25620', '25364', 'Mamirolle', '25', '', '', '25364000AD0095', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '116', '5', 'S', 'sols', '', '', '1029', '6.154422', '47.199646'], ['2019-73113', '2019-03-28', '000001', 'Vente', '18000', '17', '', 'RUE COURVOISIER', '0520', '25110', '25047', 'Baume-les-Dames', '25', '', '', '25047000AH0121', '', '', '1', '40.46', '2', '', '', '', '', '', '', '', '2', '2', 'Appartement', '33', '1', '', '', '', '', '', '6.359259', '47.352842'], ['2019-73114', '2019-04-05', '000001', 'Vente', '125000', '43', '', 'RUE DES CRAS', '1470', '25000', '25056', 'Besançon', '25', '', '', '25056000BS0101', '', '', '', '', '', '', '', '', '', '', '', '', '0', '4', 'Local industriel. commercial ou assimilé', '88', '0', 'S', 'sols', '', '', '586', '6.033604', '47.256065'], ['2019-73114', '2019-04-05', '000001', 'Vente', '125000', '43', '', 'RUE DES CRAS', '1470', '25000', '25056', 'Besançon', '25', '', '', '25056000BS0101', '', '', '', '', '', '', '', '', '', '', '', '', '0', '2', 'Appartement', '52', '2', 'S', 'sols', '', '', '586', '6.033604', '47.256065'], ['2019-73114', '2019-04-05', '000001', 'Vente', '125000', '43', '', 'RUE DES CRAS', '1470', '25000', '25056', 'Besançon', '25', '', '', '25056000BS0101', '', '', '', '', '', '', '', '', '', '', '', '', '0', '4', 'Local industriel. commercial ou assimilé', '292', '0', 'S', 'sols', '', '', '586', '6.033604', '47.256065'], ['2019-73114', '2019-04-05', '000001', 'Vente', '125000', '43', '', 'RUE DES CRAS', '1470', '25000', '25056', 'Besançon', '25', '', '', '25056000BS0101', '', '', '', '', '', '', '', '', '', '', '', '', '0', '2', 'Appartement', '75', '4', 'S', 'sols', '', '', '586', '6.033604', '47.256065'], ['2019-73115', '2019-04-04', '000001', 'Vente', '120500', '2', '', 'RUE DU FAUBOURG', '0150', '25410', '25527', 'Saint-Vit', '25', '', '', '25527000AP0315', '', '', '2', '', '3', '70.79', '', '', '', '', '', '', '2', '2', 'Appartement', '70', '4', '', '', '', '', '', '5.808852', '47.180929'], ['2019-73116', '2019-03-29', '000001', 'Vente', '313350', '26', '', 'CHE DES JARDYS', '0043', '25870', '25133', 'Châtillon-le-Duc', '25', '', '', '25133000AW0040', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '119', '6', 'AG', "terrains d'agrément", '', '', '555', '6.000145', '47.312913'], ['2019-73116', '2019-03-29', '000001', 'Vente', '313350', '26', '', 'CHE DES JARDYS', '0043', '25870', '25133', 'Châtillon-le-Duc', '25', '', '', '25133000AW0040', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '119', '6', 'S', 'sols', '', '', '500', '6.000145', '47.312913'], ['2019-73117', '2019-04-12', '000001', 'Vente', '1800', '', '', 'ROIES VATAIS', 'B077', '25660', '25410', 'Morre', '25', '', '', '254100000A0315', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'L', 'landes', 'FRICH', 'Friche', '1030', '6.066208', '47.230868'], ['2019-73118', '2019-04-11', '000001', 'Vente', '87000', '23', 'B', 'CHE DE PALENTE', '3790', '25000', '25056', 'Besançon', '25', '', '', '25056000BY0214', '', '', '320', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.048813', '47.267163'], ['2019-73118', '2019-04-11', '000001', 'Vente', '87000', '23', 'C', 'CHE DE PALENTE', '3790', '25000', '25056', 'Besançon', '25', '', '', '25056000BY0214', '', '', '1', '48.93', '', '', '', '', '', '', '', '', '1', '2', 'Appartement', '48', '2', '', '', '', '', '', '6.048813', '47.267163'], ['2019-73119', '2019-04-11', '000001', 'Vente', '83500', '3', '', 'RUE GARIBALDI', '2260', '25000', '25056', 'Besançon', '25', '', '', '25056000BH0133', '', '', '9', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.026152', '47.247234'], ['2019-73119', '2019-04-11', '000001', 'Vente', '83500', '3', '', 'RUE GARIBALDI', '2260', '25000', '25056', 'Besançon', '25', '', '', '25056000BH0133', '', '', '70', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.026152', '47.247234'], ['2019-73119', '2019-04-11', '000001', 'Vente', '83500', '3', '', 'RUE GARIBALDI', '2260', '25000', '25056', 'Besançon', '25', '', '', '25056000BH0133', '', '', '71', '41.57', '', '', '', '', '', '', '', '', '1', '2', 'Appartement', '41', '2', '', '', '', '', '', '6.026152', '47.247234'], ['2019-73120', '2019-04-19', '000001', 'Vente', '46000', '10', '', 'RUE BERSOT', '0420', '25000', '25056', 'Besançon', '25', '', '', '25056000AI0006', '', '', '17', '19.24', '3', '', '', '', '', '', '', '', '2', '2', 'Appartement', '19', '1', '', '', '', '', '', '6.027954', '47.237283'], ['2019-73121', '2019-04-05', '000001', 'Vente', '114100', '5', '', 'RUE THIEBAUD', '4870', '25000', '25056', 'Besançon', '25', '', '', '25056000BI0003', '', '', '190', '59.62', '191', '', '192', '', '', '', '', '', '3', '2', 'Appartement', '60', '4', '', '', '', '', '', '6.017091', '47.25334'], ['2019-73122', '2019-04-03', '000001', 'Vente', '122000', '4', '', 'RUE DE VERDUN', '5120', '25000', '25056', 'Besançon', '25', '', '', '25056000BR0041', '', '', '26', '', '34', '77.87', '', '', '', '', '', '', '2', '2', 'Appartement', '76', '4', '', '', '', '', '', '6.038693', '47.259475'], ['2019-73122', '2019-04-03', '000001', 'Vente', '122000', '2', '', 'RUE DE VERDUN', '5120', '25000', '25056', 'Besançon', '25', '', '', '25056000BR0041', '', '', '76', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.038693', '47.259475'], ['2019-73123', '2019-04-19', '000001', 'Vente', '180000', '', '', 'AU VILLAGE', 'B182', '25750', '25022', 'Arcey', '25', '', '', '250220000E0158', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '460', '6.658575', '47.519705'], ['2019-73123', '2019-04-19', '000001', 'Vente', '180000', '', '', 'AU VILLAGE', 'B182', '25750', '25022', 'Arcey', '25', '', '', '250220000E0159', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '655', '6.658821', '47.519318'], ['2019-73123', '2019-04-19', '000001', 'Vente', '180000', '', '', 'VOIE DE L ISLE', '0020', '25750', '25022', 'Arcey', '25', '', '', '250220000E0359', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '158', '6.657489', '47.519749'], ['2019-73123', '2019-04-19', '000001', 'Vente', '180000', '', '', 'VOIE DE L ISLE', '0020', '25750', '25022', 'Arcey', '25', '', '', '250220000E0664', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '3', '6.657382', '47.519812'], ['2019-73123', '2019-04-19', '000001', 'Vente', '180000', '5', '', 'VOIE DE L ISLE', '0020', '25750', '25022', 'Arcey', '25', '', '', '250220000E0691', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '1290', '6.657856', '47.519436'], ['2019-73123', '2019-04-19', '000001', 'Vente', '180000', '5', '', 'VOIE DE L ISLE', '0020', '25750', '25022', 'Arcey', '25', '', '', '250220000E0691', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'J', 'jardins', '', '', '363', '6.657856', '47.519436'], ['2019-73123', '2019-04-19', '000001', 'Vente', '180000', '5', '', 'VOIE DE L ISLE', '0020', '25750', '25022', 'Arcey', '25', '', '', '25022000ZD0018', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '1050', '6.657963', '47.519142'], ['2019-73123', '2019-04-19', '000001', 'Vente', '180000', '5', '', 'VOIE DE L ISLE', '0020', '25750', '25022', 'Arcey', '25', '', '', '25022000ZD0309', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '319', '8', 'P', 'prés', '', '', '1696', '6.65835', '47.519487'], ['2019-73123', '2019-04-19', '000001', 'Vente', '180000', '5', '', 'VOIE DE L ISLE', '0020', '25750', '25022', 'Arcey', '25', '', '', '25022000ZD0309', '', '', '', '', '', '', '', '', '', '', '', '', '0', '4', 'Local industriel. commercial ou assimilé', '81', '0', 'P', 'prés', '', '', '1696', '6.65835', '47.519487'], ['2019-73123', '2019-04-19', '000001', 'Vente', '180000', '5', '', 'VOIE DE L ISLE', '0020', '25750', '25022', 'Arcey', '25', '', '', '25022000ZD0309', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '319', '8', 'S', 'sols', '', '', '1280', '6.65835', '47.519487'], ['2019-73123', '2019-04-19', '000001', 'Vente', '180000', '5', '', 'VOIE DE L ISLE', '0020', '25750', '25022', 'Arcey', '25', '', '', '25022000ZD0309', '', '', '', '', '', '', '', '', '', '', '', '', '0', '4', 'Local industriel. commercial ou assimilé', '81', '0', 'S', 'sols', '', '', '1280', '6.65835', '47.519487'], ['2019-73123', '2019-04-19', '000001', 'Vente', '180000', '', '', 'AU VILLAGE', 'B182', '25750', '25022', 'Arcey', '25', '', '', '25022000ZD0312', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '556', '6.658275', '47.519052'], ['2019-73124', '2019-03-29', '000001', 'Vente', '80000', '62', '', 'GR GRANDE RUE', '0100', '25820', '25323', 'Laissey', '25', '', '', '25323000AB0276', '', '', '11', '', '9', '86.43', '', '', '', '', '', '', '2', '2', 'Appartement', '106', '5', '', '', '', '', '', '6.233722', '47.298367'], ['2019-73125', '2019-04-09', '000001', 'Vente', '20000', '', '', 'VERGER DU LARD', 'B120', '25360', '25278', 'Gonsans', '25', '', '', '252780000E0144', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '410', '6.299907', '47.231918'], ['2019-73126', '2019-04-17', '000001', 'Vente', '14000', '', '', 'GRANDS VERGERS', 'B081', '25640', '25508', 'Roulans', '25', '', '', '25508000AC0038', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'VE', 'vergers', '', '', '443', '6.230661', '47.316106'], ['2019-73127', '2019-04-13', '000001', 'Vente', '267000', '4', 'B', 'RUE DES CHALETS', '0810', '25000', '25056', 'Besançon', '25', '', '', '25056000CW0212', '', '', '3', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.033548', '47.24298'], ['2019-73127', '2019-04-13', '000001', 'Vente', '267000', '4', 'B', 'RUE DES CHALETS', '0810', '25000', '25056', 'Besançon', '25', '', '', '25056000CW0212', '', '', '10', '', '11', '', '12', '', '13', '', '14', '', '5', '2', 'Appartement', '142', '3', '', '', '', '', '', '6.033548', '47.24298'], ['2019-73128', '2019-04-05', '000001', 'Vente', '2100', '', '', 'LES EPOISSOTTES', 'B030', '25110', '25341', 'Lomont-sur-Crête', '25', '', '', '253410000D0138', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'BT', 'taillis simples', '', '', '6115', '6.421109', '47.341725'], ['2019-73128', '2019-04-05', '000001', 'Vente', '2100', '', '', 'LES EPOISSOTTES', 'B030', '25110', '25341', 'Lomont-sur-Crête', '25', '', '', '25341000ZI0003', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'BR', 'futaies résineuses', 'EPICE', 'Epicéas', '3840', '6.418862', '47.340572'], ['2019-73128', '2019-04-05', '000001', 'Vente', '2100', '', '', 'LES EPOISSOTTES', 'B030', '25110', '25341', 'Lomont-sur-Crête', '25', '', '', '25341000ZI0004', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'BR', 'futaies résineuses', 'EPICE', 'Epicéas', '6233', '6.420326', '47.341051'], ['2019-73128', '2019-04-05', '000001', 'Vente', '2100', '', '', 'LES EPOISSOTTES', 'B030', '25110', '25341', 'Lomont-sur-Crête', '25', '', '', '25341000ZI0004', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'BT', 'taillis simples', '', '', '677', '6.420326', '47.341051'], ['2019-73129', '2019-04-19', '000001', 'Vente', '170400', '19', '', 'RUE DE LA MADELEINE', '3230', '25000', '25056', 'Besançon', '25', '', '', '25056000AX0039', '', '', '15', '', '78', '21.45', '79', '17.12', '80', '8', '', '', '4', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.018385', '47.240618'], ['2019-73129', '2019-04-19', '000001', 'Vente', '170400', '19', '', 'RUE DE LA MADELEINE', '3230', '25000', '25056', 'Besançon', '25', '', '', '25056000AX0039', '', '', '43', '80.85', '44', '', '45', '', '46', '', '47', '', '7', '2', 'Appartement', '84', '4', '', '', '', '', '', '6.018385', '47.240618'], ['2019-73129', '2019-04-19', '000001', 'Vente', '170400', '4', '', 'RUE DE VIGNIER', '5270', '25000', '25056', 'Besançon', '25', '', '', '25056000AX0215', '', '', '89', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.017894', '47.240726'], ['2019-73130', '2019-04-23', '000001', 'Vente', '78000', '4', '', 'RUE EUGENE SAVOYE', '1910', '25000', '25056', 'Besançon', '25', '', '', '25056000BH0031', '', '', '66', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.023024', '47.249799'], ['2019-73130', '2019-04-23', '000001', 'Vente', '78000', '4', '', 'RUE EUGENE SAVOYE', '1910', '25000', '25056', 'Besançon', '25', '', '', '25056000BH0031', '', '', '4', '', '44', '56.76', '', '', '', '', '', '', '2', '2', 'Appartement', '58', '3', '', '', '', '', '', '6.023024', '47.249799'], ['2019-73131', '2019-04-10', '000001', 'Vente', '155000', '11', '', 'AV LOUISE MICHEL', '3185', '25000', '25056', 'Besançon', '25', '', '', '25056000IK0043', '', '', '16', '', '92', '18.45', '', '', '', '', '', '', '2', '4', 'Local industriel. commercial ou assimilé', '6', '0', '', '', '', '', '', '6.013998', '47.235191'], ['2019-73131', '2019-04-10', '000001', 'Vente', '155000', '11', '', 'AV LOUISE MICHEL', '3185', '25000', '25056', 'Besançon', '25', '', '', '25056000IK0043', '', '', '156', '18.17', '', '', '', '', '', '', '', '', '1', '4', 'Local industriel. commercial ou assimilé', '18', '0', '', '', '', '', '', '6.013998', '47.235191'], ['2019-73131', '2019-04-10', '000001', 'Vente', '155000', '11', '', 'AV LOUISE MICHEL', '3185', '25000', '25056', 'Besançon', '25', '', '', '25056000IK0043', '', '', '187', '22.21', '', '', '', '', '', '', '', '', '1', '4', 'Local industriel. commercial ou assimilé', '22', '0', '', '', '', '', '', '6.013998', '47.235191'], ['2019-73131', '2019-04-10', '000001', 'Vente', '155000', '11', '', 'AV LOUISE MICHEL', '3185', '25000', '25056', 'Besançon', '25', '', '', '25056000IK0043', '', '', '190', '18.45', '', '', '', '', '', '', '', '', '1', '4', 'Local industriel. commercial ou assimilé', '22', '0', '', '', '', '', '', '6.013998', '47.235191'], ['2019-73132', '2019-04-19', '000001', 'Vente', '106000', '52', '', 'RUE DES FLUTTES AGASSES', '2010', '25000', '25056', 'Besançon', '25', '', '', '25056000BS0076', '', '', '152', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.035107', '47.260074'], ['2019-73132', '2019-04-19', '000001', 'Vente', '106000', '52', '', 'RUE DES FLUTTES AGASSES', '2010', '25000', '25056', 'Besançon', '25', '', '', '25056000BS0076', '', '', '65', '74.95', '66', '', '', '', '', '', '', '', '2', '2', 'Appartement', '80', '4', '', '', '', '', '', '6.035107', '47.260074'], ['2019-73133', '2019-04-16', '000001', 'Vente', '18468', '', '', 'CHAMP DU NOYER', 'B022', '25720', '25036', 'Avanne-Aveney', '25', '', '', '25036000AB0265', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '513', '5.961028', '47.210615'], ['2019-73134', '2019-04-08', '000001', 'Vente', '87800', '3', '', 'RUE MAURICE DEMEUSY', '0030', '25680', '25505', 'Rougemont', '25', '', '', '25505000AL0067', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '129', '5', 'J', 'jardins', '', '', '922', '6.353897', '47.477226'], ['2019-73134', '2019-04-08', '000001', 'Vente', '87800', '3', '', 'RUE MAURICE DEMEUSY', '0030', '25680', '25505', 'Rougemont', '25', '', '', '25505000AL0067', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '129', '5', 'S', 'sols', '', '', '55', '6.353897', '47.477226'], ['2019-73134', '2019-04-08', '000001', 'Vente', '87800', '3', '', 'RUE MAURICE DEMEUSY', '0030', '25680', '25505', 'Rougemont', '25', '', '', '25505000AL0068', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '168', '6.353751', '47.477187'], ['2019-73135', '2019-04-18', '000001', 'Vente', '185920', '6', '', 'RUE DES NOZIERES', '0034', '25770', '25542', 'Serre-les-Sapins', '25', '', '', '25542000AH0093', '', '', '', '', '', '', '', '', '', '', '', '', '0', '4', 'Local industriel. commercial ou assimilé', '160', '0', 'S', 'sols', '', '', '1567', '5.935449', '47.23561'], ['2019-73135', '2019-04-18', '000001', 'Vente', '185920', '6', '', 'RUE DES NOZIERES', '0034', '25770', '25542', 'Serre-les-Sapins', '25', '', '', '25542000AH0093', '', '', '', '', '', '', '', '', '', '', '', '', '0', '4', 'Local industriel. commercial ou assimilé', '160', '0', 'S', 'sols', '', '', '1567', '5.935449', '47.23561'], ['2019-73136', '2019-04-02', '000001', 'Vente', '55000', '1', '', 'RUE DU JALAN', '0032', '25250', '25553', 'Soye', '25', '', '', '255530000C0048', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '92', '3', 'S', 'sols', '', '', '795', '6.496536', '47.444497'], ['2019-73137', '2019-04-17', '000001', 'Vente', '1440', '', '', 'CHAMPS JEANGUY', 'B035', '25410', '25502', 'Roset-Fluans', '25', '', '', '255020000C0134', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '2535', '5.841101', '47.148998'], ['2019-73137', '2019-04-17', '000001', 'Vente', '1440', '', '', 'CHAMPS JEANGUY', 'B035', '25410', '25502', 'Roset-Fluans', '25', '', '', '255020000C0136', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'L', 'landes', 'FRICH', 'Friche', '580', '5.840677', '47.1494'], ['2019-73137', '2019-04-17', '000001', 'Vente', '1440', '', '', 'CHAMPS JEANGUY', 'B035', '25410', '25502', 'Roset-Fluans', '25', '', '', '255020000C0138', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'L', 'landes', 'FRICH', 'Friche', '760', '5.84045', '47.149615'], ['2019-73138', '2019-04-23', '000001', 'Vente', '118750', '17', '', 'RUE JULES FERRY', '2930', '25000', '25056', 'Besançon', '25', '', '', '25056000DZ0199', '', '', '15', '71.89', '16', '', '', '', '', '', '', '', '2', '2', 'Appartement', '69', '4', '', '', '', '', '', '5.993222', '47.225857'], ['2019-73139', '2019-04-03', '000001', 'Vente', '100000', '35', '', 'AV CARNOT', '0670', '25000', '25056', 'Besançon', '25', '', '', '25056000CW0243', '', '', '19', '72', '41', '', '7', '', '', '', '', '', '3', '4', 'Local industriel. commercial ou assimilé', '120', '0', '', '', '', '', '', '6.02844', '47.245223'], ['2019-73140', '2019-04-12', '000001', 'Vente', '92800', '20', '', 'RUE DES FRERES MERCIER', '2200', '25000', '25056', 'Besançon', '25', '', '', '25056000AZ0300', '', '', '10', '', '11', '', '9', '', '', '', '', '', '3', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.01806', '47.242012'], ['2019-73140', '2019-04-12', '000001', 'Vente', '92800', '20', '', 'RUE DES FRERES MERCIER', '2200', '25000', '25056', 'Besançon', '25', '', '', '25056000AZ0300', '', '', '16', '46.2', '', '', '', '', '', '', '', '', '1', '2', 'Appartement', '59', '2', '', '', '', '', '', '6.01806', '47.242012'], ['2019-73141', '2019-04-15', '000001', 'Vente', '7000', '5', '', 'RUE GRENIER', '2560', '25000', '25056', 'Besançon', '25', '', '', '25056000HZ0209', '', '', '31', '', '32', '', '', '', '', '', '', '', '2', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.009157', '47.237495'], ['2019-73142', '2019-04-15', '000001', 'Vente', '47000', '20', '', 'AV DE LA VAITE', '5020', '25000', '25056', 'Besançon', '25', '', '', '25056000CL0269', '', '', '23', '17.94', '32', '', '', '', '', '', '', '', '2', '2', 'Appartement', '21', '1', '', '', '', '', '', '6.040334', '47.252845'], ['2019-73143', '2019-04-11', '000001', 'Vente', '105000', '1', 'D', 'CHE DE HALAGE CASAMENE', '2605', '25000', '25056', 'Besançon', '25', '', '', '25056000DO0075', '', '', '2', '123.55', '', '', '', '', '', '', '', '', '1', '4', 'Local industriel. commercial ou assimilé', '139', '0', '', '', '', '', '', '6.031512', '47.223464'], ['2019-73143', '2019-04-11', '000001', 'Vente', '105000', '', '', 'LES CASAMENES', 'B019', '25000', '25056', 'Besançon', '25', '', '', '25056000DO0078', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '94', '6.031583', '47.223466'], ['2019-73144', '2019-04-18', '000001', 'Vente', '118000', '128', 'C', 'RUE DE BELFORT', '0390', '25000', '25056', 'Besançon', '25', '', '', '25056000CL0094', '', '', '640', '', '647', '', '', '', '', '', '', '', '2', '2', 'Appartement', '62', '3', '', '', '', '', '', '6.041292', '47.255186'], ['2019-73144', '2019-04-18', '000001', 'Vente', '118000', '128', 'C', 'RUE DE BELFORT', '0390', '25000', '25056', 'Besançon', '25', '', '', '25056000CL0094', '', '', '605', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.041292', '47.255186'], ['2019-73145', '2019-04-19', '000001', 'Vente', '210000', '1', 'B', 'RUE DES SARMENTS', '0078', '25660', '25410', 'Morre', '25', '', '', '25410000AA0646', '', '', '2', '', '', '', '', '', '', '', '', '', '1', '1', 'Maison', '100', '4', '', '', '', '', '', '6.069996', '47.227749'], ['2019-73146', '2019-04-18', '000001', 'Vente', '167500', '15', '', 'RUE DE L ETOILE', '0034', '25660', '25532', 'Saône', '25', '', '', '25532000AB0354', '', '', '12', '', '3', '', '', '', '', '', '', '', '2', '1', 'Maison', '129', '4', '', '', '', '', '', '6.12146', '47.226303'], ['2019-73147', '2019-04-12', '000001', 'Vente', '10000', '', '', 'A VERBON', 'B134', '25480', '25454', 'Pirey', '25', '', '', '25454000AE0128', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'L', 'landes', 'FRICH', 'Friche', '1750', '5.964772', '47.266376'], ['2019-73148', '2019-04-11', '000001', 'Vente', '109000', '56', '', 'AV DE LA VAITE', '5020', '25000', '25056', 'Besançon', '25', '', '', '25056000CK0158', '', '', '153', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.043978', '47.255462'], ['2019-73148', '2019-04-11', '000001', 'Vente', '109000', '54', '', 'AV DE LA VAITE', '5020', '25000', '25056', 'Besançon', '25', '', '', '25056000CK0158', '', '', '43', '', '57', '68', '', '', '', '', '', '', '2', '2', 'Appartement', '68', '4', '', '', '', '', '', '6.043978', '47.255462'], ['2019-73149', '2019-04-26', '000001', 'Vente', '107000', '4', '', 'RUE CLAUDIUS GONDY', '1270', '25000', '25056', 'Besançon', '25', '', '', '25056000DY0159', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '78', '4', 'S', 'sols', '', '', '257', '5.9998', '47.232879'], ['2019-73150', '2019-04-25', '000001', 'Vente', '159400', '4', '', 'RUE DE LA FONTAINE', '0060', '25660', '25245', 'Fontain', '25', '', '', '25245000AC0064', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '86', '3', 'S', 'sols', '', '', '80', '6.024344', '47.199537'], ['2019-73150', '2019-04-25', '000001', 'Vente', '159400', '', '', 'VILLAGE EST', 'B244', '25660', '25245', 'Fontain', '25', '', '', '25245000AC0065', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '37', '6.024433', '47.19945'], ['2019-73150', '2019-04-25', '000001', 'Vente', '159400', '', '', 'VILLAGE EST', 'B244', '25660', '25245', 'Fontain', '25', '', '', '25245000AC0249', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '18', '6.024304', '47.19959'], ['2019-73151', '2019-04-24', '000001', 'Vente', '55000', '10', '', 'RUE RIVOTTE', '4500', '25000', '25056', 'Besançon', '25', '', '', '25056000AL0028', '', '', '20', '16.26', '', '', '', '', '', '', '', '', '1', '2', 'Appartement', '25', '1', '', '', '', '', '', '6.03165', '47.234834'], ['2019-73151', '2019-04-24', '000001', 'Vente', '55000', '10', '', 'RUE RIVOTTE', '4500', '25000', '25056', 'Besançon', '25', '', '', '25056000AL0028', '', '', '19', '12.36', '', '', '', '', '', '', '', '', '1', '2', 'Appartement', '9', '0', '', '', '', '', '', '6.03165', '47.234834'], ['2019-73152', '2019-04-25', '000001', 'Vente', '804000', '', '', 'CHAMPS JEAN D ABBANS', 'B011', '25220', '25560', 'Thise', '25', '', '', '25560000AB0003', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '1465', '6.067967', '47.284975'], ['2019-73152', '2019-04-25', '000001', 'Vente', '804000', '21', '', 'RUE JEAN D ABBANS', '0140', '25220', '25560', 'Thise', '25', '', '', '25560000AB0197', '', '', '', '', '', '', '', '', '', '', '', '', '0', '4', 'Local industriel. commercial ou assimilé', '', '', 'S', 'sols', '', '', '612', '6.068202', '47.285206'], ['2019-73152', '2019-04-25', '000001', 'Vente', '804000', '21', '', 'RUE JEAN D ABBANS', '0140', '25220', '25560', 'Thise', '25', '', '', '25560000AB0199', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '278', '6.068153', '47.285285'], ['2019-73152', '2019-04-25', '000001', 'Vente', '804000', '', '', 'CHAMPS JEAN D ABBANS', 'B011', '25220', '25560', 'Thise', '25', '', '', '255600000F0200', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '1426', '6.068589', '47.28517'], ['2019-73152', '2019-04-25', '000001', 'Vente', '804000', '', '', 'CHAMPS JEAN D ABBANS', 'B011', '25220', '25560', 'Thise', '25', '', '', '255600000F0201', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'L', 'landes', 'FRICH', 'Friche', '560', '6.067961', '47.284639'], ['2019-73152', '2019-04-25', '000001', 'Vente', '804000', '', '', 'CHAMPS JEAN D ABBANS', 'B011', '25220', '25560', 'Thise', '25', '', '', '255600000F1205', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'L', 'landes', 'FRICH', 'Friche', '1100', '6.067676', '47.284839'], ['2019-73152', '2019-04-25', '000001', 'Vente', '804000', '', '', 'CHAMPS JEAN D ABBANS', 'B011', '25220', '25560', 'Thise', '25', '', '', '255600000F1441', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'L', 'landes', 'FRICH', 'Friche', '306', '6.067591', '47.284614'], ['2019-73153', '2019-04-18', '000001', 'Vente', '49000', '5', '', 'RUE SAINT VINCENT', '0032', '25720', '25036', 'Avanne-Aveney', '25', '', '', '25036000AI0045', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '51', '2', 'S', 'sols', '', '', '131', '5.963481', '47.201216'], ['2019-73154', '2019-04-04', '000001', 'Vente', '90000', '1', '', 'RUE FREDERIC BATAILLE', '2160', '25000', '25056', 'Besançon', '25', '', '', '25056000BH0057', '', '', '10', '60.4', '39', '', '', '', '', '', '', '', '2', '2', 'Appartement', '60', '3', '', '', '', '', '', '6.024026', '47.249824'], ['2019-73155', '2019-04-05', '000001', 'Vente', '289500', '1', '', 'RUE DE CULOT', '0021', '25320', '25103', 'Busy', '25', '', '', '25103000AC0281', '', '', '', '', '', '', '', '', '', '', '', '', '0', '3', 'Dépendance', '', '0', 'S', 'sols', '', '', '426', '5.940775', '47.164951'], ['2019-73155', '2019-04-05', '000001', 'Vente', '289500', '1', '', 'RUE DE CULOT', '0021', '25320', '25103', 'Busy', '25', '', '', '25103000AC0281', '', '', '', '', '', '', '', '', '', '', '', '', '0', '2', 'Appartement', '105', '2', 'S', 'sols', '', '', '426', '5.940775', '47.164951'], ['2019-73155', '2019-04-05', '000001', 'Vente', '289500', '1', '', 'RUE DE CULOT', '0021', '25320', '25103', 'Busy', '25', '', '', '25103000AC0281', '', '', '', '', '', '', '', '', '', '', '', '', '0', '2', 'Appartement', '105', '2', 'S', 'sols', '', '', '426', '5.940775', '47.164951'], ['2019-73155', '2019-04-05', '000001', 'Vente', '289500', '', '', 'CRIANTE DU COUCHANT', 'B064', '25320', '25103', 'Busy', '25', '', '', '25103000AC0307', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '223', '5.940601', '47.165129'], ['2019-73155', '2019-04-05', '000001', 'Vente', '289500', '', '', 'CRIANTE DU COUCHANT', 'B064', '25320', '25103', 'Busy', '25', '', '', '25103000AC0308', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '274', '5.940669', '47.165018'], ['2019-73156', '2019-04-30', '000001', 'Vente', '380000', '25', '', 'GR GRANDE RUE', '0090', '25170', '25101', 'Burgille', '25', '', '', '251010000D0051', '', '', '', '', '', '', '', '', '', '', '', '', '0', '3', 'Dépendance', '', '0', 'J', 'jardins', '', '', '433', '5.776242', '47.267828'], ['2019-73156', '2019-04-30', '000001', 'Vente', '380000', '25', '', 'GR GRANDE RUE', '0090', '25170', '25101', 'Burgille', '25', '', '', '251010000D0051', '', '', '', '', '', '', '', '', '', '', '', '', '0', '3', 'Dépendance', '', '0', 'S', 'sols', '', '', '100', '5.776242', '47.267828'], ['2019-73156', '2019-04-30', '000001', 'Vente', '380000', '25', '', 'GR GRANDE RUE', '0090', '25170', '25101', 'Burgille', '25', '', '', '251010000D0052', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '146', '6', 'S', 'sols', '', '', '428', '5.776294', '47.267665'], ['2019-73157', '2019-04-15', '000001', 'Vente', '170000', '1', '', 'RTE DE RAHON', '0050', '25430', '25436', 'Orve', '25', '', '', '25436000ZC0013', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '125', '4', 'S', 'sols', '', '', '872', '6.553159', '47.326462'], ['2019-73157', '2019-04-15', '000001', 'Vente', '170000', '1', '', 'RTE DE RAHON', '0050', '25430', '25436', 'Orve', '25', '', '', '25436000ZC0013', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '125', '4', 'T', 'terres', '', '', '6398', '6.553159', '47.326462'], ['2019-73158', '2019-04-16', '000001', 'Vente', '150600', '5', '', 'RUE DE BESANCON', '0007', '25110', '25298', 'Grosbois', '25', '', '', '25298000ZB0060', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '81', '4', 'P', 'prés', '', '', '3185', '6.306349', '47.341179'], ['2019-73158', '2019-04-16', '000001', 'Vente', '150600', '5', '', 'RUE DE BESANCON', '0007', '25110', '25298', 'Grosbois', '25', '', '', '25298000ZB0060', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '81', '4', 'S', 'sols', '', '', '1295', '6.306349', '47.341179'], ['2019-73159', '2019-04-19', '000001', 'Vente', '60000', '', '', 'AUX CHAMPS D OMBRE', 'B015', '25320', '25561', 'Thoraise', '25', '', '', '25561000AA0202', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '1023', '5.906792', '47.171053'], ['2019-73160', '2019-04-29', '000001', 'Vente', '61000', '102', '', 'RUE DE BELFORT', '0390', '25000', '25056', 'Besançon', '25', '', '', '25056000CL0054', '', '', '21', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.037784', '47.252741'], ['2019-73160', '2019-04-29', '000001', 'Vente', '61000', '102', 'A', 'RUE DE BELFORT', '0390', '25000', '25056', 'Besançon', '25', '', '', '25056000CL0054', '', '', '69', '', '97', '32.52', '', '', '', '', '', '', '2', '2', 'Appartement', '33', '1', '', '', '', '', '', '6.037784', '47.252741'], ['2019-73161', '2019-05-02', '000001', 'Vente', '238000', '5', '', 'AV DE BEL AIR', '0007', '25870', '25133', 'Châtillon-le-Duc', '25', '', '', '25133000AT0187', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '143', '5', 'S', 'sols', '', '', '920', '6.007922', '47.304755'], ['2019-73162', '2019-04-19', '000001', 'Vente', '1500', '6', '', 'AU MOULIN BRULE', 'B173', '25340', '25276', 'Gondenans-Montby', '25', '', '', '252760000B0028', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '33', '2', 'S', 'sols', '', '', '680', '6.465426', '47.457301'], ['2019-73162', '2019-04-19', '000001', 'Vente', '1500', '', '', 'AU MOULIN BRULE', 'B173', '25340', '25276', 'Gondenans-Montby', '25', '', '', '252760000B0029', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '305', '6.465073', '47.45774'], ['2019-73162', '2019-04-19', '000001', 'Vente', '1500', '', '', 'AU MOULIN BRULE', 'B173', '25340', '25276', 'Gondenans-Montby', '25', '', '', '252760000B0030', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '800', '6.464944', '47.457669'], ['2019-73163', '2019-04-16', '000001', 'Vente', '256000', '3', '', 'RUE DES SARMENTS', '0078', '25660', '25410', 'Morre', '25', '', '', '25410000AA0656', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '126', '6', 'S', 'sols', '', '', '587', '6.070197', '47.227477'], ['2019-73163', '2019-04-16', '000001', 'Vente', '256000', '', '', 'CROIX ROUGE', 'B025', '25660', '25410', 'Morre', '25', '', '', '25410000AA0659', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'AB', 'terrains a bâtir', '', '', '14', '6.070045', '47.22756'], ['2019-73164', '2019-04-23', '000001', 'Vente', '382000', '8', '', 'RUE CAMILLE DESMOULINS', '0597', '25000', '25056', 'Besançon', '25', '', '', '25056000CN0042', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '116', '5', 'S', 'sols', '', '', '1265', '6.050583', '47.248395'], ['2019-73165', '2019-04-30', '000001', 'Vente', '95800', '6', '', 'ALL DES BRUYERES', '0580', '25000', '25056', 'Besançon', '25', '', '', '25056000BN0269', '', '', '296', '81.38', '310', '', '', '', '', '', '', '', '2', '2', 'Appartement', '81', '4', '', '', '', '', '', '6.02403', '47.257605'], ['2019-73165', '2019-04-30', '000001', 'Vente', '95800', '4', '', 'ALL DES BRUYERES', '0580', '25000', '25056', 'Besançon', '25', '', '', '25056000BN0269', '', '', '747', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.02403', '47.257605'], ['2019-73166', '2019-04-29', '000001', 'Vente', '62000', '21', '', 'RUE D ARENES', '0210', '25000', '25056', 'Besançon', '25', '', '', '25056000AX0109', '', '', '109', '32.7', '', '', '', '', '', '', '', '', '1', '2', 'Appartement', '36', '2', '', '', '', '', '', '6.01916', '47.239462'], ['2019-73167', '2019-04-15', '000001', 'Vente', '50000', '8', '', 'RUE BATTANT', '0330', '25000', '25056', 'Besançon', '25', '', '', '25056000AY0003', '', '', '24', '', '', '', '', '', '', '', '', '', '1', '2', 'Appartement', '2', '0', '', '', '', '', '', '6.020423', '47.240437'], ['2019-73167', '2019-04-15', '000001', 'Vente', '50000', '8', '', 'RUE BATTANT', '0330', '25000', '25056', 'Besançon', '25', '', '', '25056000AY0003', '', '', '23', '25.47', '', '', '', '', '', '', '', '', '1', '2', 'Appartement', '27', '1', '', '', '', '', '', '6.020423', '47.240437'], ['2019-73168', '2019-05-02', '000001', 'Vente', '65000', '23', '', 'RUE FREDERIC BATAILLE', '2160', '25000', '25056', 'Besançon', '25', '', '', '25056000BH0319', '', '', '22', '44.58', '', '', '', '', '', '', '', '', '1', '2', 'Appartement', '44', '2', '', '', '', '', '', '6.023082', '47.251197'], ['2019-73169', '2019-04-19', '000001', 'Vente', '131000', '26', '', 'RUE XAVIER MARMIER', '5380', '25000', '25056', 'Besançon', '25', '', '', '25056000HY0351', '', '', '62', '', '9', '66.14', '', '', '', '', '', '', '2', '2', 'Appartement', '68', '3', '', '', '', '', '', '6.008819', '47.241947'], ['2019-73170', '2019-04-29', '000001', 'Vente', '146632', '23', '', 'RUE DE CHAILLOT', '0780', '25000', '25056', 'Besançon', '25', '', '', '25056000HV0319', '', '', '198', '', '', '', '', '', '', '', '', '', '1', '4', 'Local industriel. commercial ou assimilé', '10', '0', '', '', '', '', '', '6.013041', '47.251206'], ['2019-73170', '2019-04-29', '000001', 'Vente', '146632', '23', '', 'RUE DE CHAILLOT', '0780', '25000', '25056', 'Besançon', '25', '', '', '25056000HV0319', '', '', '119', '42.66', '', '', '', '', '', '', '', '', '1', '4', 'Local industriel. commercial ou assimilé', '43', '0', '', '', '', '', '', '6.013041', '47.251206'], ['2019-73171', '2019-04-24', '000001', 'Vente', '117000', '25', '', 'RUE DE LA MOUILLERE', '3580', '25000', '25056', 'Besançon', '25', '', '', '25056000CW0152', '', '', '21', '', '40', '70.42', '68', '', '', '', '', '', '3', '2', 'Appartement', '70', '3', '', '', '', '', '', '6.033461', '47.242592'], ['2019-73172', '2019-04-29', '000001', 'Vente', '30000', '5', '', 'PL DE L EUROPE', '1914', '25000', '25056', 'Besançon', '25', '', '', '25056000EP0203', '', '', '20', '', '', '', '', '', '', '', '', '', '1', '2', 'Appartement', '33', '2', '', '', '', '', '', '5.97322', '47.218679'], ['2019-73173', '2019-04-24', '000001', 'Vente', '62000', '13', '', 'RUE RONCHAUX', '4550', '25000', '25056', 'Besançon', '25', '', '', '25056000AM0009', '', '', '213', '21.64', '', '', '', '', '', '', '', '', '1', '2', 'Appartement', '22', '1', '', '', '', '', '', '6.027727', '47.234088'], ['2019-73174', '2019-04-25', '000001', 'Vente', '195250', '7', '', 'RUE DE L ECOLE LEPETIT', '0068', '25220', '25575', 'Vaire', '25', '', '', '25575576AB0005', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '105', '4', 'S', 'sols', '', '', '912', '6.146102', '47.287722'], ['2019-73175', '2019-04-25', '000001', 'Vente', '190000', '17', '', 'RUE DE LA MOUILLERE', '3580', '25000', '25056', 'Besançon', '25', '', '', '25056000CW0248', '', '', '68', '89', '', '', '', '', '', '', '', '', '1', '2', 'Appartement', '85', '4', '', '', '', '', '', '6.032041', '47.243272'], ['2019-73175', '2019-04-25', '000001', 'Vente', '190000', '15', '', 'RUE DE LA MOUILLERE', '3580', '25000', '25056', 'Besançon', '25', '', '', '25056000CW0248', '', '', '119', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.032041', '47.243272'], ['2019-73176', '2019-04-29', '000001', 'Vente', '80000', '17', 'A', 'RUE TRIDARD', '0045', '25430', '25529', 'Sancey', '25', '', '', '255290000F0812', '', '', '8', '98.55', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.578822', '47.29429'], ['2019-73176', '2019-04-29', '000001', 'Vente', '80000', '17', 'A', 'RUE TRIDARD', '0045', '25430', '25529', 'Sancey', '25', '', '', '255290000F0812', '', '', '8', '98.55', '', '', '', '', '', '', '', '', '1', '2', 'Appartement', '95', '5', '', '', '', '', '', '6.578822', '47.29429'], ['2019-73177', '2019-04-29', '000001', 'Vente', '10950', '', '', 'LES VIGNOTTES', 'B299', '25430', '25529', 'Sancey', '25', '', '', '255295300B0171', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'T', 'terres', '', '', '2190', '6.590142', '47.308756'], ['2019-73178', '2019-04-23', '000001', 'Vente', '213200', '7', '', 'CHE DES VISONS', '0312', '25410', '25527', 'Saint-Vit', '25', '', '', '25527000AN0345', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '105', '6', 'S', 'sols', '', '', '644', '5.826283', '47.183122'], ['2019-73179', '2019-04-23', '000001', 'Vente', '40000', '21', 'B', 'RUE CLAUDE POUILLET', '1260', '25000', '25056', 'Besançon', '25', '', '', '25056000AW0102', '', '', '2', '', '', '', '', '', '', '', '', '', '1', '2', 'Appartement', '31', '1', '', '', '', '', '', '6.02058', '47.238744'], ['2019-73180', '2019-05-07', '000001', 'Vente', '192500', '2', '', 'RUE DES ARONDES', '0001', '25660', '25532', 'Saône', '25', '', '', '25532000AA0120', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '88', '5', 'S', 'sols', '', '', '750', '6.117979', '47.226667'], ['2019-73181', '2019-05-10', '000001', 'Vente', '6000', '17', '', 'IMP ANTOINE FRANCOIS MOMORO', '3464', '25000', '25056', 'Besançon', '25', '', '', '25056000DY0298', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '89', '5.992945', '47.232591'], ['2019-73182', '2019-04-26', '000001', 'Vente', '107850', '18', '', 'RUE DES GRANGES', '2510', '25000', '25056', 'Besançon', '25', '', '', '25056000AD0054', '', '', '11', '33.98', '', '', '', '', '', '', '', '', '1', '2', 'Appartement', '45', '2', '', '', '', '', '', '6.024279', '47.238814'], ['2019-73183', '2019-05-09', '000001', 'Vente', '202500', '28', '', 'IMP DES CHAMPS PASSERET', '0883', '25000', '25056', 'Besançon', '25', '', '', '25056000BT0261', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '90', '4', 'S', 'sols', '', '', '122', '6.033837', '47.262023'], ['2019-73184', '2019-05-13', '000001', 'Vente', '150000', '', '', 'LA BARRIERE', 'B001', '25170', '25448', 'Pelousey', '25', '', '', '25448000AD0014', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'VE', 'vergers', '', '', '2497', '5.92134', '47.276065'], ['2019-73185', '2019-05-10', '000001', 'Vente', '605000', '8', '', 'RUE DU CRETOT', '0085', '25320', '25397', 'Montferrand-le-Château', '25', '', '', '25397000AK0126', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '225', '8', 'S', 'sols', '', '', '500', '5.899754', '47.186223'], ['2019-73185', '2019-05-10', '000001', 'Vente', '605000', '8', '', 'RUE DU CRETOT', '0085', '25320', '25397', 'Montferrand-le-Château', '25', '', '', '25397000AK0126', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '225', '8', 'AG', "terrains d'agrément", 'PARC', 'Parc', '7165', '5.899754', '47.186223'], ['2019-73186', '2019-05-13', '000001', 'Vente', '133000', '2', '', 'RUE DE LA CITE', '0460', '25110', '25047', 'Baume-les-Dames', '25', '', '', '25047000AT0084', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '88', '5', 'S', 'sols', '', '', '493', '6.349863', '47.351664'], ['2019-73187', '2019-05-13', '000001', 'Vente', '108540', '8', '', 'RUE DU ROUSSILLON', '4600', '25000', '25056', 'Besançon', '25', '', '', '25056000DX0005', '', '', '27', '72.54', '28', '', '', '', '', '', '', '', '2', '2', 'Appartement', '75', '4', '', '', '', '', '', '6.003222', '47.240069'], ['2019-73188', '2019-04-23', '000001', 'Vente', '2000', '', '', 'BOIS DU GRAVIER', 'B010', '25430', '25529', 'Sancey', '25', '', '', '255290000B0608', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'BT', 'taillis simples', '', '', '7135', '6.605357', '47.279686'], ['2019-73189', '2019-04-30', '000001', 'Vente', '143000', '14', '', 'RUE HENRI ET MAURICE BAIGUE', '2630', '25000', '25056', 'Besançon', '25', '', '', '25056000BN0309', '', '', '80', '', '96', '', '', '', '', '', '', '', '2', '2', 'Appartement', '56', '2', '', '', '', '', '', '6.025977', '47.253657'], ['2019-73189', '2019-04-30', '000001', 'Vente', '143000', '12', '', 'RUE HENRI ET MAURICE BAIGUE', '2630', '25000', '25056', 'Besançon', '25', '', '', '25056000BN0309', '', '', '188', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.025977', '47.253657'], ['2019-73190', '2019-04-26', '000001', 'Vente', '190000', '34', '', 'RTE NATIONALE 57', '0031', '25620', '25364', 'Mamirolle', '25', '', '', '25364000AH0210', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '50', '2', 'S', 'sols', '', '', '1285', '6.158903', '47.197165'], ['2019-73190', '2019-04-26', '000001', 'Vente', '190000', '34', '', 'GR GRANDE RUE', '0029', '25620', '25364', 'Mamirolle', '25', '', '', '25364000AH0220', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '147', '6.158687', '47.197238'], ['2019-73191', '2019-04-29', '000001', 'Vente', '100000', '', '', 'DERRIERE L HOPITAL', 'B047', '25170', '25448', 'Pelousey', '25', '', '', '25448000AA0044', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'AB', 'terrains a bâtir', '', '', '1244', '5.916709', '47.275311'], ['2019-73192', '2019-05-17', '000001', 'Vente', '4500', '13', '', 'RUE JEAN LASLANDES', '3050', '25000', '25056', 'Besançon', '25', '', '', '25056000HW0532', '', '', '24', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.018953', '47.248307'], ['2019-73193', '2019-04-23', '000001', 'Vente', '2000', '', '', 'BOIS DU GRAVIER', 'B010', '25430', '25529', 'Sancey', '25', '', '', '255290000B0607', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'BT', 'taillis simples', '', '', '7134', '6.605872', '47.280028'], ['2019-73194', '2019-04-24', '000001', 'Vente', '215000', '18', '', 'RUE DE LA PERRIERE', '0107', '25640', '25508', 'Roulans', '25', '', '', '25508000AB0404', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '130', '5', 'S', 'sols', '', '', '1116', '6.237843', '47.318017'], ['2019-73195', '2019-04-23', '000001', 'Vente', '231500', '34', 'B', 'CHE DES VIGNES', '0540', '25220', '25495', 'Roche-lez-Beaupré', '25', '', '', '25495000AM0228', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '140', '5', 'S', 'sols', '', '', '809', '6.105684', '47.275724'], ['2019-73196', '2019-05-21', '000001', 'Vente', '56000', '16', '', 'AV DE L ILE DE FRANCE', '2750', '25000', '25056', 'Besançon', '25', '', '', '25056000EO0042', '', '', '452', '82.1', '', '', '', '', '', '', '', '', '1', '2', 'Appartement', '82', '4', '', '', '', '', '', '5.968171', '47.222114'], ['2019-73197', '2019-04-26', '000001', 'Vente', '227500', '28', '', 'RUE DES TILLEULS', '0106', '25480', '25212', 'École-Valentin', '25', '', '', '25212000AK0536', '', '', '8', '108', '', '', '', '', '', '', '', '', '1', '2', 'Appartement', '110', '4', '', '', '', '', '', '5.984407', '47.267059'], ['2019-73197', '2019-04-26', '000001', 'Vente', '227500', '28', '', 'RUE DES TILLEULS', '0106', '25480', '25212', 'École-Valentin', '25', '', '', '25212000AK0536', '', '', '26', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '5.984407', '47.267059'], ['2019-73197', '2019-04-26', '000001', 'Vente', '227500', '28', '', 'RUE DES TILLEULS', '0106', '25480', '25212', 'École-Valentin', '25', '', '', '25212000AK0536', '', '', '24', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '5.984407', '47.267059'], ['2019-73198', '2019-05-03', '000001', 'Vente', '75000', '28', '', 'RUE DES FLANDRES DUNKERQUE', '1980', '25000', '25056', 'Besançon', '25', '', '', '25056000ER0229', '', '', '41', '88.42', '', '', '', '', '', '', '', '', '1', '2', 'Appartement', '90', '5', '', '', '', '', '', '5.977661', '47.225393'], ['2019-73199', '2019-05-22', '000001', 'Vente', '132800', '53', '', 'RUE DES GRANGES', '2510', '25000', '25056', 'Besançon', '25', '', '', '25056000AC0025', '', '', '10', '55.3', '6', '', '', '', '', '', '', '', '2', '2', 'Appartement', '61', '1', '', '', '', '', '', '6.026284', '47.238339'], ['2019-73200', '2019-05-20', '000001', 'Vente', '275000', '23', '', 'AV FONTAINE ARGENT', '2030', '25000', '25056', 'Besançon', '25', '', '', '25056000CV0521', '', '', '243', '', '281', '77.7', '', '', '', '', '', '', '2', '2', 'Appartement', '78', '3', '', '', '', '', '', '6.033142', '47.246357'], ['2019-73200', '2019-05-20', '000001', 'Vente', '275000', '7', '', 'RUE ALEXIS CHOPARD', '0080', '25000', '25056', 'Besançon', '25', '', '', '25056000CV0521', '', '', '89', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.033142', '47.246357'], ['2019-73200', '2019-05-20', '000001', 'Vente', '275000', '7', '', 'RUE ALEXIS CHOPARD', '0080', '25000', '25056', 'Besançon', '25', '', '', '25056000CV0521', '', '', '155', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.033142', '47.246357'], ['2019-73201', '2019-05-16', '000001', 'Vente', '300', '', '', 'VIGNES DES VERPILLERES', 'B101', '25250', '25264', 'Gémonval', '25', '', '', '25264000ZI0003', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'T', 'terres', '', '', '2978', '6.570852', '47.531112'], ['2019-73202', '2019-05-02', '000001', 'Vente', '161000', '5107', '', 'SAINT NICOLE', 'B089', '25440', '25109', 'Cessey', '25', '', '', '25109000AB0031', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '81', '5', 'S', 'sols', '', '', '500', '5.916181', '47.115843'], ['2019-73202', '2019-05-02', '000001', 'Vente', '161000', '5107', '', 'SAINT NICOLE', 'B089', '25440', '25109', 'Cessey', '25', '', '', '25109000AB0031', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '81', '5', 'P', 'prés', '', '', '785', '5.916181', '47.115843'], ['2019-73202', '2019-05-02', '000001', 'Vente', '161000', '', '', 'SAINT NICOLE', 'B089', '25440', '25109', 'Cessey', '25', '', '', '25109000AB0032', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '120', '5.915815', '47.115951'], ['2019-73203', '2019-05-03', '000001', 'Vente', '278000', '2', '', 'RUE DU LOT. CHAMP LA PAULE', '0013', '25870', '25382', 'Moncey', '25', '', '', '25382000ZB0169', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '196', '7', 'AG', "terrains d'agrément", 'PARC', 'Parc', '531', '6.123144', '47.364828'], ['2019-73203', '2019-05-03', '000001', 'Vente', '278000', '2', '', 'RUE DU LOT. CHAMP LA PAULE', '0013', '25870', '25382', 'Moncey', '25', '', '', '25382000ZB0169', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '196', '7', 'S', 'sols', '', '', '500', '6.123144', '47.364828'], ['2019-73204', '2019-05-15', '000001', 'Vente', '49000', '1', '', 'RUE DE LA BUTTE', '0585', '25000', '25056', 'Besançon', '25', '', '', '25056000IK0273', '', '', '151', '21', '31', '', '', '', '', '', '', '', '2', '2', 'Appartement', '26', '1', '', '', '', '', '', '6.011351', '47.23405'], ['2019-73204', '2019-05-15', '000001', 'Vente', '49000', '1', '', 'RUE DE LA BUTTE', '0585', '25000', '25056', 'Besançon', '25', '', '', '25056000IK0273', '', '', '78', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.011351', '47.23405'], ['2019-73205', '2019-05-17', '000001', 'Vente', '145000', '1', '', 'RUE DU FAUBOURG BRIAND', '0149', '25410', '25527', 'Saint-Vit', '25', '', '', '25527000AR0347', '', '', '10', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '5.805019', '47.179925'], ['2019-73205', '2019-05-17', '000001', 'Vente', '145000', '1', '', 'RUE DU FAUBOURG BRIAND', '0149', '25410', '25527', 'Saint-Vit', '25', '', '', '25527000AR0347', '', '', '11', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '5.805019', '47.179925'], ['2019-73205', '2019-05-17', '000001', 'Vente', '145000', '1', '', 'RUE DU FAUBOURG BRIAND', '0149', '25410', '25527', 'Saint-Vit', '25', '', '', '25527000AR0347', '', '', '6', '92.32', '', '', '', '', '', '', '', '', '1', '2', 'Appartement', '92', '4', '', '', '', '', '', '5.805019', '47.179925'], ['2019-73205', '2019-05-17', '000001', 'Vente', '145000', '1', '', 'RUE DU FAUBOURG BRIAND', '0149', '25410', '25527', 'Saint-Vit', '25', '', '', '25527000AR0347', '', '', '9', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '5.805019', '47.179925'], ['2019-73206', '2019-05-16', '000001', 'Vente', '200000', '7', '', 'RUE PROUDHON', '4280', '25000', '25056', 'Besançon', '25', '', '', '25056000AC0169', '', '', '1', '69.4', '2', '', '', '', '', '', '', '', '2', '4', 'Local industriel. commercial ou assimilé', '69', '0', '', '', '', '', '', '6.027733', '47.238257'], ['2019-73207', '2019-05-20', '000001', 'Vente', '66000', '57', '', 'RUE DE VESOUL', '5160', '25000', '25056', 'Besançon', '25', '', '', '25056000HV0052', '', '', '19', '44.31', '21', '', '', '', '', '', '', '', '2', '2', 'Appartement', '41', '1', '', '', '', '', '', '6.014946', '47.254063'], ['2019-73208', '2019-05-16', '000001', 'Vente', '348540', '1', 'B', 'RUE RESAL', '4440', '25000', '25056', 'Besançon', '25', '', '', '25056000BP0149', '', '', '5', '35.11', '', '', '', '', '', '', '', '', '1', '4', 'Local industriel. commercial ou assimilé', '18', '0', '', '', '', '', '', '6.035439', '47.252014'], ['2019-73208', '2019-05-16', '000001', 'Vente', '348540', '1', 'B', 'RUE RESAL', '4440', '25000', '25056', 'Besançon', '25', '', '', '25056000BP0149', '', '', '6', '56.26', '', '', '', '', '', '', '', '', '1', '2', 'Appartement', '27', '1', '', '', '', '', '', '6.035439', '47.252014'], ['2019-73208', '2019-05-16', '000001', 'Vente', '348540', '1', 'B', 'RUE RESAL', '4440', '25000', '25056', 'Besançon', '25', '', '', '25056000BP0149', '', '', '6', '56.26', '', '', '', '', '', '', '', '', '1', '2', 'Appartement', '27', '1', '', '', '', '', '', '6.035439', '47.252014'], ['2019-73208', '2019-05-16', '000001', 'Vente', '348540', '1', 'B', 'RUE RESAL', '4440', '25000', '25056', 'Besançon', '25', '', '', '25056000BP0149', '', '', '1', '', '2', '', '3', '72.51', '4', '', '', '', '4', '4', 'Local industriel. commercial ou assimilé', '104', '0', '', '', '', '', '', '6.035439', '47.252014'], ['2019-73208', '2019-05-16', '000001', 'Vente', '348540', '1', 'B', 'RUE RESAL', '4440', '25000', '25056', 'Besançon', '25', '', '', '25056000BP0149', '', '', '7', '41.6', '', '', '', '', '', '', '', '', '1', '2', 'Appartement', '53', '3', '', '', '', '', '', '6.035439', '47.252014'], ['2019-73208', '2019-05-16', '000001', 'Vente', '348540', '1', 'B', 'RUE RESAL', '4440', '25000', '25056', 'Besançon', '25', '', '', '25056000BP0149', '', '', '5', '35.11', '', '', '', '', '', '', '', '', '1', '2', 'Appartement', '36', '2', '', '', '', '', '', '6.035439', '47.252014'], ['2019-73208', '2019-05-16', '000001', 'Vente', '348540', '1', 'B', 'RUE RESAL', '4440', '25000', '25056', 'Besançon', '25', '', '', '25056000BP0149', '', '', '2', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.035439', '47.252014'], ['2019-73209', '2019-05-15', '000001', 'Vente', '138750', '50', '', 'AV DE MONTRAPON', '3530', '25000', '25056', 'Besançon', '25', '', '', '25056000HR0117', '', '', '1', '', '6', '13.83', '8', '65.73', '', '', '', '', '3', '2', 'Appartement', '77', '3', '', '', '', '', '', '6.005502', '47.248285'], ['2019-73209', '2019-05-15', '000001', 'Vente', '138750', '50', '', 'AV DE MONTRAPON', '3530', '25000', '25056', 'Besançon', '25', '', '', '25056000HR0117', '', '', '11', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.005502', '47.248285'], ['2019-73210', '2019-05-23', '000001', 'Vente', '100900', '1', 'B', 'RUE DES VIGNERONS', '5250', '25000', '25056', 'Besançon', '25', '', '', '25056000DZ0346', '', '', '35', '49.14', '62', '', '', '', '', '', '', '', '2', '2', 'Appartement', '49', '2', '', '', '', '', '', '5.991132', '47.228896'], ['2019-73210', '2019-05-23', '000001', 'Vente', '100900', '1', 'B', 'RUE DES VIGNERONS', '5250', '25000', '25056', 'Besançon', '25', '', '', '25056000DZ0346', '', '', '33', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '5.991132', '47.228896'], ['2019-73211', '2019-05-06', '000001', 'Vente', '88350', '18', '', 'RUE DES SAULNIERS', '4720', '25000', '25056', 'Besançon', '25', '', '', '25056000EZ0178', '', '', '174', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '5.992315', '47.244965'], ['2019-73211', '2019-05-06', '000001', 'Vente', '88350', '20', '', 'RUE DES SAULNIERS', '4720', '25000', '25056', 'Besançon', '25', '', '', '25056000EZ0178', '', '', '135', '45.2', '84', '', '', '', '', '', '', '', '2', '2', 'Appartement', '45', '1', '', '', '', '', '', '5.992315', '47.244965'], ['2019-73212', '2019-05-20', '000001', 'Vente', '196900', '7', '', 'RUE DU CHATEAU', '0006', '25170', '25150', "Chevigney-sur-l'Ognon", '25', '', '', '25150000ZB0091', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '81', '4', 'S', 'sols', '', '', '880', '5.843062', '47.29891'], ['2019-73213', '2019-05-03', '000001', 'Vente', '119000', '26', 'B', 'CHE DES TILLEROYES', '4900', '25000', '25056', 'Besançon', '25', '', '', '25056000MY0059', '', '', '216', '', '267', '', '', '', '', '', '', '', '2', '2', 'Appartement', '55', '2', '', '', '', '', '', '5.979867', '47.240992'], ['2019-73213', '2019-05-03', '000001', 'Vente', '119000', '26', 'D', 'CHE DES TILLEROYES', '4900', '25000', '25056', 'Besançon', '25', '', '', '25056000MY0059', '', '', '304', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '5.979867', '47.240992'], ['2019-73214', '2019-05-04', '000001', 'Vente', '123400', '5', '', 'RUE DELACOUR', '0028', '25340', '25156', 'Pays-de-Clerval', '25', '', '', '251560000A0425', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '81', '3', 'S', 'sols', '', '', '854', '6.492251', '47.399267'], ['2019-73215', '2019-05-16', '000001', 'Vente', '58000', '46', '', 'RUE JEAN WYRSCH', '2860', '25000', '25056', 'Besançon', '25', '', '', '25056000BK0166', '', '', '155', '', '165', '56.83', '', '', '', '', '', '', '2', '2', 'Appartement', '64', '3', '', '', '', '', '', '6.020689', '47.257354'], ['2019-73216', '2019-05-21', '000001', 'Vente', '134000', '3', '', 'RUE SOPHIE TREBUCHET', '4769', '25000', '25056', 'Besançon', '25', '', '', '25056000CO0142', '', '', '201', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.056444', '47.245477'], ['2019-73216', '2019-05-21', '000001', 'Vente', '134000', '1', '', 'RUE SOPHIE TREBUCHET', '4769', '25000', '25056', 'Besançon', '25', '', '', '25056000CO0142', '', '', '60', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.056444', '47.245477'], ['2019-73216', '2019-05-21', '000001', 'Vente', '134000', '3', '', 'RUE SOPHIE TREBUCHET', '4769', '25000', '25056', 'Besançon', '25', '', '', '25056000CO0142', '', '', '297', '75.04', '', '', '', '', '', '', '', '', '1', '2', 'Appartement', '75', '4', '', '', '', '', '', '6.056444', '47.245477'], ['2019-73217', '2019-05-23', '000001', 'Vente', '113000', '55', 'I', 'RUE DE DOLE', '1620', '25000', '25056', 'Besançon', '25', '', '', '25056000DZ0076', '', '', '126', '65.92', '196', '', '', '', '', '', '', '', '2', '2', 'Appartement', '63', '4', '', '', '', '', '', '5.997447', '47.230439'], ['2019-73218', '2019-05-10', '000001', 'Vente', '379200', '5126', '', 'LOT L OREE DU BOIS', 'A045', '25870', '25557', 'Tallenay', '25', '', '', '25557000ZB0234', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '117', '6', 'S', 'sols', '', '', '1000', '6.023142', '47.303567'], ['2019-73218', '2019-05-10', '000001', 'Vente', '379200', '5126', '', 'LOT L OREE DU BOIS', 'A045', '25870', '25557', 'Tallenay', '25', '', '', '25557000ZB0234', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '117', '6', 'AG', "terrains d'agrément", '', '', '1286', '6.023142', '47.303567'], ['2019-73219', '2019-05-10', '000001', 'Vente', '391250', '13', '', 'CHE DES GRANDS BAS', '2470', '25000', '25056', 'Besançon', '25', '', '', '25056000BL0020', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '78', '3', 'S', 'sols', '', '', '643', '6.014585', '47.257408'], ['2019-73220', '2019-05-09', '000001', 'Vente', '243000', '6', '', 'RUE HELENE BOUCHER', '0133', '25220', '25560', 'Thise', '25', '', '', '25560000AD0345', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '165', '7', 'S', 'sols', '', '', '546', '6.081953', '47.279621'], ['2019-73221', '2019-05-14', '000001', 'Vente', '76100', '122', 'B', 'RUE DE BELFORT', '0390', '25000', '25056', 'Besançon', '25', '', '', '25056000CL0417', '', '', '2', '43.53', '', '', '', '', '', '', '', '', '1', '2', 'Appartement', '43', '2', '', '', '', '', '', '6.040227', '47.254947'], ['2019-73222', '2019-05-11', '000001', 'Vente', '130000', '3', 'H', 'RUE DES CRAS', '1470', '25000', '25056', 'Besançon', '25', '', '', '25056000BO0088', '', '', '1', '404.64', '', '', '', '', '', '', '', '', '1', '4', 'Local industriel. commercial ou assimilé', '450', '0', '', '', '', '', '', '6.029247', '47.252114'], ['2019-73223', '2019-05-09', '000001', 'Vente', '8500', '102', '', 'RUE DES CRAS', '1470', '25000', '25056', 'Besançon', '25', '', '', '25056000BR0332', '', '', '119', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.039732', '47.258551'], ['2019-73224', '2019-05-07', '000001', 'Vente', '697000', '', '', 'LES ECHENOZ DE BOUEZ', 'B131', '25000', '25056', 'Besançon', '25', '', '', '25056000IO0017', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'L', 'landes', '', '', '490', '6.023667', '47.224124'], ['2019-73224', '2019-05-07', '000001', 'Vente', '697000', '', '', 'LES ECHENOZ DE BOUEZ', 'B131', '25000', '25056', 'Besançon', '25', '', '', '25056000IO0026', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'AG', "terrains d'agrément", 'SPORT', 'Terrain de sport', '648', '6.022806', '47.223727'], ['2019-73224', '2019-05-07', '000001', 'Vente', '697000', '', '', 'LES ECHENOZ DE BOUEZ', 'B131', '25000', '25056', 'Besançon', '25', '', '', '25056000IO0026', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'VE', 'vergers', '', '', '5622', '6.022806', '47.223727'], ['2019-73224', '2019-05-07', '000001', 'Vente', '697000', '4', '5', 'CHE DES ECHENOZ DE VELOTTE', '1660', '25000', '25056', 'Besançon', '25', '', '', '25056000IO0027', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '182', '6', 'S', 'sols', '', '', '690', '6.02315', '47.223547'], ['2019-73224', '2019-05-07', '000001', 'Vente', '697000', '', '', 'LES ECHENOZ DE BOUEZ', 'B131', '25000', '25056', 'Besançon', '25', '', '', '25056000IO0028', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'VE', 'vergers', '', '', '1553', '6.024242', '47.223612'], ['2019-73224', '2019-05-07', '000001', 'Vente', '697000', '45', '', 'CHE DES ECHENOZ DE VELOTTE', '1660', '25000', '25056', 'Besançon', '25', '', '', '25056000IO0029', '', '', '', '', '', '', '', '', '', '', '', '', '0', '3', 'Dépendance', '', '0', 'S', 'sols', '', '', '349', '6.023768', '47.223688'], ['2019-73224', '2019-05-07', '000001', 'Vente', '697000', '', '', 'LES ECHENOZ DE BOUEZ', 'B131', '25000', '25056', 'Besançon', '25', '', '', '25056000IO0030', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '852', '6.024001', '47.223939'], ['2019-73224', '2019-05-07', '000001', 'Vente', '697000', '', '', 'LES ECHENOZ DE BOUEZ', 'B131', '25000', '25056', 'Besançon', '25', '', '', '25056000IO0031', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'L', 'landes', '', '', '1523', '6.024441', '47.223833'], ['2019-73224', '2019-05-07', '000001', 'Vente', '697000', '', '', 'LES ECHENOZ DE BOUEZ', 'B131', '25000', '25056', 'Besançon', '25', '', '', '25056000IO0032', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'L', 'landes', '', '', '1050', '6.024864', '47.223864'], ['2019-73224', '2019-05-07', '000001', 'Vente', '697000', '', '', 'LES ECHENOZ DE BOUEZ', 'B131', '25000', '25056', 'Besançon', '25', '', '', '25056000IO0033', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'L', 'landes', '', '', '743', '6.025039', '47.223595'], ['2019-73224', '2019-05-07', '000001', 'Vente', '697000', '', '', 'LES ECHENOZ DE BOUEZ', 'B131', '25000', '25056', 'Besançon', '25', '', '', '25056000IO0034', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'L', 'landes', '', '', '5755', '6.026211', '47.223757'], ['2019-73224', '2019-05-07', '000001', 'Vente', '697000', '', '', 'CHE DE BOUEZ', '0485', '25000', '25056', 'Besançon', '25', '', '', '25056000IO0035', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'L', 'landes', '', '', '5380', '6.028196', '47.223768'], ['2019-73224', '2019-05-07', '000001', 'Vente', '697000', '', '', 'LES ECHENOZ DE BOUEZ', 'B131', '25000', '25056', 'Besançon', '25', '', '', '25056000IO0045', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'L', 'landes', '', '', '4565', '6.025171', '47.223171'], ['2019-73224', '2019-05-07', '000001', 'Vente', '697000', '', '', 'LES ECHENOZ DE BOUEZ', 'B131', '25000', '25056', 'Besançon', '25', '', '', '25056000IO0046', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'VE', 'vergers', '', '', '5375', '6.023971', '47.223209'], ['2019-73224', '2019-05-07', '000001', 'Vente', '697000', '', '', 'LES ECHENOZ DE BOUEZ', 'B131', '25000', '25056', 'Besançon', '25', '', '', '25056000IO0047', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'AG', "terrains d'agrément", '', '', '849', '6.022809', '47.22326'], ['2019-73224', '2019-05-07', '000001', 'Vente', '697000', '45', '', 'CHE DES ECHENOZ DE VELOTTE', '1660', '25000', '25056', 'Besançon', '25', '', '', '25056000IO0048', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '46', '2', 'S', 'sols', '', '', '943', '6.02294', '47.223086'], ['2019-73224', '2019-05-07', '000001', 'Vente', '697000', '45', '', 'CHE DES ECHENOZ DE VELOTTE', '1660', '25000', '25056', 'Besançon', '25', '', '', '25056000IO0048', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '51', '3', 'S', 'sols', '', '', '943', '6.02294', '47.223086'], ['2019-73224', '2019-05-07', '000001', 'Vente', '697000', '45', '', 'CHE DES ECHENOZ DE VELOTTE', '1660', '25000', '25056', 'Besançon', '25', '', '', '25056000IO0048', '', '', '', '', '', '', '', '', '', '', '', '', '0', '3', 'Dépendance', '', '0', 'S', 'sols', '', '', '943', '6.02294', '47.223086'], ['2019-73224', '2019-05-07', '000001', 'Vente', '697000', '', '', 'LES ECHENOZ DE BOUEZ', 'B131', '25000', '25056', 'Besançon', '25', '', '', '25056000IO0049', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '2245', '6.023331', '47.222922'], ['2019-73224', '2019-05-07', '000001', 'Vente', '697000', '', '', 'LES ECHENOZ DE BOUEZ', 'B131', '25000', '25056', 'Besançon', '25', '', '', '25056000IO0086', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'BT', 'taillis simples', '', '', '1457', '6.024009', '47.222796'], ['2019-73224', '2019-05-07', '000001', 'Vente', '697000', '', '', 'LES ECHENOZ DE BOUEZ', 'B131', '25000', '25056', 'Besançon', '25', '', '', '25056000IO0087', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'VE', 'vergers', '', '', '3955', '6.026319', '47.223342'], ['2019-73224', '2019-05-07', '000001', 'Vente', '697000', '', '', 'LES ECHENOZ DE BOUEZ', 'B131', '25000', '25056', 'Besançon', '25', '', '', '25056000IO0088', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'VE', 'vergers', '', '', '820', '6.026163', '47.22315'], ['2019-73224', '2019-05-07', '000001', 'Vente', '697000', '', '', 'LES ECHENOZ DE BOUEZ', 'B131', '25000', '25056', 'Besançon', '25', '', '', '25056000IO0091', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'L', 'landes', '', '', '628', '6.023063', '47.224097'], ['2019-73225', '2019-05-15', '000001', 'Vente', '282800', '22', '', 'RUE DE LA MALTIERE', '0017', '25660', '25267', 'Gennes', '25', '', '', '25267000AA0186', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '147', '5', 'S', 'sols', '', '', '994', '6.126046', '47.243243'], ['2019-73226', '2019-05-07', '000001', 'Vente', '228000', '6', '', 'CHE DE LA THERE', '0120', '25870', '25265', 'Geneuille', '25', '', '', '25265000ZD0398', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '81', '3', 'S', 'sols', '', '', '1712', '5.965756', '47.321166'], ['2019-73226', '2019-05-07', '000001', 'Vente', '228000', '', '', 'CONTOUR DES COMBES', 'B018', '25870', '25265', 'Geneuille', '25', '', '', '25265000ZD0399', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '59', '5.96619', '47.321173'], ['2019-73227', '2019-05-13', '000001', 'Vente', '65200', '12', '', 'RUE DE LUXEMBOURG', '3215', '25000', '25056', 'Besançon', '25', '', '', '25056000EO0042', '', '', '223', '', '250', '', '', '', '', '', '', '', '2', '2', 'Appartement', '82', '4', '', '', '', '', '', '5.968171', '47.222114'], ['2019-73227', '2019-05-13', '000001', 'Vente', '65200', '10', '', 'RUE DE LUXEMBOURG', '3215', '25000', '25056', 'Besançon', '25', '', '', '25056000EO0262', '', '', '124', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '5.967401', '47.22251'], ['2019-73228', '2019-05-31', '000001', 'Vente', '182100', '15', '', 'AV EDOUARD DROZ', '1730', '25000', '25056', 'Besançon', '25', '', '', '25056000CX0147', '', '', '194', '', '209', '111.28', '', '', '', '', '', '', '2', '2', 'Appartement', '117', '4', '', '', '', '', '', '6.03346', '47.241218'], ['2019-73228', '2019-05-31', '000001', 'Vente', '182100', '11', '', 'AV EDOUARD DROZ', '1730', '25000', '25056', 'Besançon', '25', '', '', '25056000CX0147', '', '', '390', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.03346', '47.241218'], ['2019-73229', '2019-05-22', '000001', 'Vente', '268450', '4', '', 'RUE PLATINE', '0051', '25480', '25212', 'École-Valentin', '25', '', '', '25212581AO0088', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '120', '5', 'S', 'sols', '', '', '751', '5.999152', '47.274627'], ['2019-73229', '2019-05-22', '000001', 'Vente', '268450', '', '', 'LES VAUX DESSUS', 'B078', '25480', '25212', 'École-Valentin', '25', '', '', '25212581AO0155', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'T', 'terres', '', '', '508', '5.998935', '47.274638'], ['2019-73230', '2019-05-11', '000001', 'Vente', '78500', '4', '', 'RUE DU VIVARAIS', '5355', '25000', '25056', 'Besançon', '25', '', '', '25056000LR0055', '', '', '17', '', '', '', '', '', '', '', '', '', '1', '2', 'Appartement', '67', '3', '', '', '', '', '', '5.9635', '47.218327'], ['2019-73231', '2019-05-24', '000001', 'Vente', '50000', '14', '', 'RUE RESAL', '4440', '25000', '25056', 'Besançon', '25', '', '', '25056000BP0309', '', '', '32', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.0343', '47.254431'], ['2019-73231', '2019-05-24', '000001', 'Vente', '50000', '14', '', 'RUE RESAL', '4440', '25000', '25056', 'Besançon', '25', '', '', '25056000BP0309', '', '', '111', '', '', '', '', '', '', '', '', '', '1', '4', 'Local industriel. commercial ou assimilé', '23', '0', '', '', '', '', '', '6.0343', '47.254431'], ['2019-73232', '2019-05-22', '000001', 'Vente', '64000', '40', '', 'RUE DE VELOTTE', '5110', '25000', '25056', 'Besançon', '25', '', '', '25056000DS0215', '', '', '38', '', '75', '28.4', '', '', '', '', '', '', '2', '2', 'Appartement', '29', '1', '', '', '', '', '', '6.013094', '47.221876'], ['2019-73232', '2019-05-22', '000001', 'Vente', '64000', '40', '', 'RUE DE VELOTTE', '5110', '25000', '25056', 'Besançon', '25', '', '', '25056000DS0215', '', '', '25', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.013094', '47.221876'], ['2019-73233', '2019-05-20', '000001', 'Vente', '67000', '11', '', 'RUE DU MUGUET', '3610', '25000', '25056', 'Besançon', '25', '', '', '25056000BY0068', '', '', '216', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.047337', '47.264985'], ['2019-73233', '2019-05-20', '000001', 'Vente', '67000', '11', '', 'RUE DU MUGUET', '3610', '25000', '25056', 'Besançon', '25', '', '', '25056000BY0068', '', '', '59', '', '60', '', '', '', '', '', '', '', '2', '2', 'Appartement', '59', '3', '', '', '', '', '', '6.047337', '47.264985'], ['2019-73234', '2019-05-14', '000001', "Vente en l'état futur d'achèvement", '339000', '35', '', 'RUE DE CHAILLOT', '0780', '25000', '25056', 'Besançon', '25', '', '', '25056000HV0337', '', '', '87', '', '', '', '', '', '', '', '', '', '1', '', '', '', '', '', '', '', '', '', '6.011032', '47.252542'], ['2019-73234', '2019-05-14', '000001', "Vente en l'état futur d'achèvement", '339000', '35', '', 'RUE DE CHAILLOT', '0780', '25000', '25056', 'Besançon', '25', '', '', '25056000HV0337', '', '', '72', '', '', '', '', '', '', '', '', '', '1', '', '', '', '', '', '', '', '', '', '6.011032', '47.252542'], ['2019-73234', '2019-05-14', '000001', "Vente en l'état futur d'achèvement", '339000', '35', '', 'RUE DE CHAILLOT', '0780', '25000', '25056', 'Besançon', '25', '', '', '25056000HV0337', '', '', '73', '', '', '', '', '', '', '', '', '', '1', '', '', '', '', '', '', '', '', '', '6.011032', '47.252542'], ['2019-73234', '2019-05-14', '000001', "Vente en l'état futur d'achèvement", '339000', '35', '', 'RUE DE CHAILLOT', '0780', '25000', '25056', 'Besançon', '25', '', '', '25056000HV0337', '', '', '88', '', '', '', '', '', '', '', '', '', '1', '', '', '', '', '', '', '', '', '', '6.011032', '47.252542'], ['2019-73235', '2019-05-24', '000001', 'Vente', '165600', '25', '', 'GR GRANDE RUE', '0029', '25620', '25364', 'Mamirolle', '25', '', '', '25364000AI0028', '', '', '', '', '', '', '', '', '', '', '', '', '0', '2', 'Appartement', '77', '3', 'S', 'sols', '', '', '321', '6.159384', '47.196921'], ['2019-73235', '2019-05-24', '000001', 'Vente', '165600', '25', '', 'GR GRANDE RUE', '0029', '25620', '25364', 'Mamirolle', '25', '', '', '25364000AI0028', '', '', '', '', '', '', '', '', '', '', '', '', '0', '2', 'Appartement', '87', '4', 'S', 'sols', '', '', '321', '6.159384', '47.196921'], ['2019-73235', '2019-05-24', '000001', 'Vente', '165600', '25', '', 'GR GRANDE RUE', '0029', '25620', '25364', 'Mamirolle', '25', '', '', '25364000AI0028', '', '', '', '', '', '', '', '', '', '', '', '', '0', '3', 'Dépendance', '', '0', 'S', 'sols', '', '', '321', '6.159384', '47.196921'], ['2019-73236', '2019-05-10', '000001', 'Vente', '39000', '13', '', 'RUE DES ECOLES', '0070', '25960', '25197', 'Deluz', '25', '', '', '25197000AC0090', '', '', '15', '', '26', '', '79', '', '8', '39.49', '', '', '4', '2', 'Appartement', '35', '1', '', '', '', '', '', '6.203481', '47.29477'], ['2019-73237', '2019-05-29', '000001', 'Vente', '325000', '35', '', 'RUE MIRABEAU', '3461', '25000', '25056', 'Besançon', '25', '', '', '25056000CN0389', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '153', '6', 'S', 'sols', '', '', '824', '6.052343', '47.246078'], ['2019-73237', '2019-05-29', '000001', 'Vente', '325000', '33', 'B', 'RUE MIRABEAU', '3461', '25000', '25056', 'Besançon', '25', '', '', '25056000CN0392', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '123', '6.052161', '47.246123'], ['2019-73238', '2019-06-05', '000001', 'Vente', '43100', '5', '', 'RUE DE LA TRAVERSE', '0340', '25680', '25505', 'Rougemont', '25', '', '', '25505000AL0554', '', '', '7', '73.3', '', '', '', '', '', '', '', '', '1', '2', 'Appartement', '79', '5', '', '', '', '', '', '6.355054', '47.479089'], ['2019-73239', '2019-05-22', '000001', 'Vente', '57900', '31', '', 'RUE DE BELFORT', '0390', '25000', '25056', 'Besançon', '25', '', '', '25056000BO0227', '', '', '17', '60.1', '6', '', '', '', '', '', '', '', '2', '2', 'Appartement', '60', '2', '', '', '', '', '', '6.027769', '47.247632'], ['2019-73240', '2019-05-21', '000001', 'Vente', '188000', '137', '', 'GR GRANDE RUE', '2440', '25000', '25056', 'Besançon', '25', '', '', '25056000AL0093', '', '', '15', '67.96', '', '', '', '', '', '', '', '', '1', '2', 'Appartement', '69', '3', '', '', '', '', '', '6.029166', '47.235192'], ['2019-73241', '2019-05-29', '000001', 'Vente', '70000', '15', '', 'RUE DU TUNNEL', '5010', '25000', '25056', 'Besançon', '25', '', '', '25056000BI0261', '', '', '13', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.018879', '47.254797'], ['2019-73241', '2019-05-29', '000001', 'Vente', '70000', '15', '', 'RUE DU TUNNEL', '5010', '25000', '25056', 'Besançon', '25', '', '', '25056000BI0261', '', '', '48', '42.84', '', '', '', '', '', '', '', '', '1', '2', 'Appartement', '44', '2', '', '', '', '', '', '6.018879', '47.254797'], ['2019-73242', '2019-06-07', '000001', 'Vente', '400000', '10', 'B', 'RUE JACQUARD', '2755', '25000', '25056', 'Besançon', '25', '', '', '25056000HN0203', '', '', '', '', '', '', '', '', '', '', '', '', '0', '4', 'Local industriel. commercial ou assimilé', '225', '0', 'S', 'sols', '', '', '5133', '5.995347', '47.240022'], ['2019-73242', '2019-06-07', '000001', 'Vente', '400000', '10', 'B', 'RUE JACQUARD', '2755', '25000', '25056', 'Besançon', '25', '', '', '25056000HN0203', '', '', '', '', '', '', '', '', '', '', '', '', '0', '4', 'Local industriel. commercial ou assimilé', '4144', '0', 'S', 'sols', '', '', '5133', '5.995347', '47.240022'], ['2019-73242', '2019-06-07', '000001', 'Vente', '400000', '10', 'B', 'RUE JACQUARD', '2755', '25000', '25056', 'Besançon', '25', '', '', '25056000HN0203', '', '', '', '', '', '', '', '', '', '', '', '', '0', '4', 'Local industriel. commercial ou assimilé', '225', '0', 'S', 'sols', '', '', '5133', '5.995347', '47.240022'], ['2019-73243', '2019-06-05', '000001', 'Vente', '85000', '5', '', 'RUE DES BROSSES', '0560', '25000', '25056', 'Besançon', '25', '', '', '25056000HW0038', '', '', '33', '', '59', '40.61', '', '', '', '', '', '', '2', '2', 'Appartement', '40', '2', '', '', '', '', '', '6.012266', '47.247027'], ['2019-73243', '2019-06-05', '000001', 'Vente', '85000', '5', '', 'RUE DES BROSSES', '0560', '25000', '25056', 'Besançon', '25', '', '', '25056000HW0038', '', '', '1', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.012266', '47.247027'], ['2019-73244', '2019-06-05', '000001', 'Vente', '124000', '53', '', 'RUE EMILE PICARD', '1770', '25000', '25056', 'Besançon', '25', '', '', '25056000CT0175', '', '', '1', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.041387', '47.244982'], ['2019-73244', '2019-06-05', '000001', 'Vente', '124000', '53', '', 'RUE EMILE PICARD', '1770', '25000', '25056', 'Besançon', '25', '', '', '25056000CT0175', '', '', '10', '58.63', '11', '', '3', '', '6', '', '', '', '4', '2', 'Appartement', '55', '3', '', '', '', '', '', '6.041387', '47.244982'], ['2019-73245', '2019-05-27', '000001', 'Vente', '77500', '20', '', 'RUE OLYMPE DE GOUGES', '0016', '25220', '25112', 'Chalezeule', '25', '', '', '25112000AV0309', '', '', '255', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.060664', '47.247635'], ['2019-73245', '2019-05-27', '000001', 'Vente', '77500', '20', '', 'RUE OLYMPE DE GOUGES', '0016', '25220', '25112', 'Chalezeule', '25', '', '', '25112000AV0309', '', '', '141', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.060664', '47.247635'], ['2019-73245', '2019-05-27', '000001', 'Vente', '77500', '24', '', 'RUE OLYMPE DE GOUGES', '0016', '25220', '25112', 'Chalezeule', '25', '', '', '25112000AV0309', '', '', '22', '59.65', '', '', '', '', '', '', '', '', '1', '2', 'Appartement', '60', '3', '', '', '', '', '', '6.060664', '47.247635'], ['2019-73246', '2019-05-27', '000001', 'Vente', '80500', '1', '', 'RUE DU ONZE NOVEMBRE', '3715', '25000', '25056', 'Besançon', '25', '', '', '25056000BR0106', '', '', '88', '56.3', '89', '', '90', '', '', '', '', '', '3', '2', 'Appartement', '55', '3', '', '', '', '', '', '6.042194', '47.258352'], ['2019-73247', '2019-05-29', '000001', 'Vente', '65000', '7', '', 'BD DIDEROT', '1553', '25000', '25056', 'Besançon', '25', '', '', '25056000CW0310', '', '', '104', '43.03', '99', '', '', '', '', '', '', '', '2', '2', 'Appartement', '39', '1', '', '', '', '', '', '6.033775', '47.242999'], ['2019-73248', '2019-06-17', '000001', 'Vente', '129900', '3', '', 'IMP LES PIECES', '0043', '25320', '25001', 'Abbans-Dessous', '25', '', '', '25001000ZC0057', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '90', '4', 'S', 'sols', '', '', '1031', '5.876087', '47.134126'], ['2019-73248', '2019-06-17', '000001', 'Vente', '129900', '', '', 'AUX PIECES', 'B073', '25320', '25001', 'Abbans-Dessous', '25', '', '', '25001000ZC0062', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'T', 'terres', '', '', '609', '5.87588', '47.134299'], ['2019-73248', '2019-06-17', '000001', 'Vente', '129900', '', '', 'AUX PIECES', 'B073', '25320', '25001', 'Abbans-Dessous', '25', '', '', '25001000ZC0065', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '625', '5.875438', '47.134055'], ['2019-73248', '2019-06-17', '000001', 'Vente', '129900', '', '', 'AUX PIECES', 'B073', '25320', '25001', 'Abbans-Dessous', '25', '', '', '25001000ZC0066', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '48', '5.875832', '47.134362'], ['2019-73249', '2019-05-22', '000001', 'Vente', '155200', '3', '', 'IMP DU BREUILLE', '0030', '25820', '25323', 'Laissey', '25', '', '', '25323000AC0087', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '130', '4', 'J', 'jardins', '', '', '592', '6.228935', '47.297257'], ['2019-73249', '2019-05-22', '000001', 'Vente', '155200', '3', '', 'IMP DU BREUILLE', '0030', '25820', '25323', 'Laissey', '25', '', '', '25323000AC0087', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '130', '4', 'S', 'sols', '', '', '500', '6.228935', '47.297257'], ['2019-73250', '2019-06-05', '000001', 'Vente', '146000', '12', 'B', 'RUE DE L INDUSTRIE', '2720', '25000', '25056', 'Besançon', '25', '', '', '25056000BH0152', '', '', '12', '', '3', '', '9', '73.82', '', '', '', '', '3', '2', 'Appartement', '76', '5', '', '', '', '', '', '6.024802', '47.247389'], ['2019-73251', '2019-06-17', '000001', 'Vente', '250000', '3', '', 'RUE DES CHENEVIERES', '0020', '25170', '25119', 'Champvans-les-Moulins', '25', '', '', '25119000AC0031', '', '', '', '', '', '', '', '', '', '', '', '', '0', '3', 'Dépendance', '', '0', 'S', 'sols', '', '', '653', '5.914689', '47.254838'], ['2019-73251', '2019-06-17', '000001', 'Vente', '250000', '3', '', 'RUE DES CHENEVIERES', '0020', '25170', '25119', 'Champvans-les-Moulins', '25', '', '', '25119000AC0031', '', '', '', '', '', '', '', '', '', '', '', '', '0', '2', 'Appartement', '82', '3', 'S', 'sols', '', '', '653', '5.914689', '47.254838'], ['2019-73251', '2019-06-17', '000001', 'Vente', '250000', '3', '', 'RUE DES CHENEVIERES', '0020', '25170', '25119', 'Champvans-les-Moulins', '25', '', '', '25119000AC0031', '', '', '', '', '', '', '', '', '', '', '', '', '0', '2', 'Appartement', '83', '3', 'S', 'sols', '', '', '653', '5.914689', '47.254838'], ['2019-73251', '2019-06-17', '000001', 'Vente', '250000', '3', '', 'RUE DES CHENEVIERES', '0020', '25170', '25119', 'Champvans-les-Moulins', '25', '', '', '25119000AC0031', '', '', '', '', '', '', '', '', '', '', '', '', '0', '2', 'Appartement', '64', '3', 'S', 'sols', '', '', '653', '5.914689', '47.254838'], ['2019-73251', '2019-06-17', '000001', 'Vente', '250000', '3', '', 'RUE DES CHENEVIERES', '0020', '25170', '25119', 'Champvans-les-Moulins', '25', '', '', '25119000AC0031', '', '', '', '', '', '', '', '', '', '', '', '', '0', '2', 'Appartement', '63', '3', 'S', 'sols', '', '', '653', '5.914689', '47.254838'], ['2019-73252', '2019-05-28', '000001', 'Vente', '65550', '5', '', 'RUE MARULAZ', '3370', '25000', '25056', 'Besançon', '25', '', '', '25056000AX0116', '', '', '112', '', '113', '31.15', '122', '', '123', '', '124', '', '5', '2', 'Appartement', '30', '1', '', '', '', '', '', '6.01788', '47.239387'], ['2019-73253', '2019-06-18', '000001', 'Vente', '24800', '', '', 'LE VERNOIS', 'B033', '25640', '25490', 'Rigney', '25', '', '', '25490000ZA0040', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '1996', '6.170374', '47.38548'], ['2019-73254', '2019-06-19', '000001', 'Vente', '2800', '', '', 'LES PETITS PRES', 'B117', '25440', '25104', 'By', '25', '', '', '25104000ZC0011', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '18450', '5.889749', '47.003538'], ['2019-73255', '2019-06-07', '000001', 'Vente', '60000', '', '', 'BURGILLE', 'B011', '25170', '25101', 'Burgille', '25', '', '', '251010000D0184', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '1003', '5.775752', '47.267121'], ['2019-73255', '2019-06-07', '000001', 'Vente', '60000', '', '', 'BURGILLE', 'B011', '25170', '25101', 'Burgille', '25', '', '', '251010000D0185', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '98', '5.775589', '47.267376'], ['2019-73256', '2019-06-24', '000001', 'Vente', '216600', '6', '', 'IMP DES BUIS', '0082', '25410', '25527', 'Saint-Vit', '25', '', '', '25527000AN0439', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '94', '5', 'S', 'sols', '', '', '505', '5.823666', '47.18401'], ['2019-73257', '2019-06-27', '000001', 'Vente', '178000', '1', '', 'RUE DU GAL CHARLES DE GAULLE', '0017', '25870', '25612', 'Vieilley', '25', '', '', '25612000AC0004', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '175', '6', 'S', 'sols', '', '', '1395', '6.070061', '47.337409'], ['2019-73257', '2019-06-27', '000001', 'Vente', '178000', '', '', 'LA VIE DE BONNAY', 'B043', '25870', '25612', 'Vieilley', '25', '', '', '25612000AC0340', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '377', '6.069617', '47.337375'], ['2019-73258', '2019-06-21', '000001', 'Vente', '382193.66', '9', '', 'RUE VOIRIN', '5360', '25000', '25056', 'Besançon', '25', '', '', '25056000HY0283', '', '', '', '', '', '', '', '', '', '', '', '', '0', '4', 'Local industriel. commercial ou assimilé', '260', '0', 'S', 'sols', '', '', '168', '6.012878', '47.242286'], ['2019-73258', '2019-06-21', '000001', 'Vente', '382193.66', '48', '', 'AV GEORGES CLEMENCEAU', '2330', '25000', '25056', 'Besançon', '25', '', '', '25056000HY0284', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'AB', 'terrains a bâtir', '', '', '3', '6.013169', '47.242297'], ['2019-73258', '2019-06-21', '000001', 'Vente', '382193.66', '9', '', 'RUE VOIRIN', '5360', '25000', '25056', 'Besançon', '25', '', '', '25056000HY0287', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '362', '6.013058', '47.242288'], ['2019-73259', '2019-06-25', '000001', 'Vente', '250000', '2', '', 'CHE DES MERCURAUX', '0111', '25720', '25058', 'Beure', '25', '', '', '25058000AH0101', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '210', '6', 'S', 'sols', '', '', '1036', '6.015159', '47.206054'], ['2019-73259', '2019-06-25', '000001', 'Vente', '250000', '', '', 'ESSART GIROD', 'B042', '25720', '25058', 'Beure', '25', '', '', '25058000AH0120', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '368', '6.015364', '47.205954'], ['2019-73259', '2019-06-25', '000001', 'Vente', '250000', '', '', 'PRES DE MAILLOT', 'B080', '25720', '25058', 'Beure', '25', '', '', '25058000AH0238', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '365', '6.01479', '47.20594'], ['2019-73259', '2019-06-25', '000001', 'Vente', '250000', '', '', 'ESSART GIROD', 'B042', '25720', '25058', 'Beure', '25', '', '', '25058000AH0246', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'AB', 'terrains a bâtir', '', '', '65', '6.015123', '47.205854'], ['2019-73260', '2019-06-27', '000001', 'Vente', '74000', '16', '', 'RUE DE VESOUL', '5160', '25000', '25056', 'Besançon', '25', '', '', '25056000BI0157', '', '', '137', '', '157', '45.56', '', '', '', '', '', '', '2', '2', 'Appartement', '49', '2', '', '', '', '', '', '6.019834', '47.25063'], ['2019-73260', '2019-06-27', '000001', 'Vente', '74000', '16', '', 'RUE DE VESOUL', '5160', '25000', '25056', 'Besançon', '25', '', '', '25056000BI0157', '', '', '255', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.019834', '47.25063'], ['2019-73261', '2019-06-13', '000001', 'Vente', '360000', '5287', '', 'RUE ARISTOTE', '0003', '25410', '25195', 'Dannemarie-sur-Crète', '25', '', '', '25195000AE0241', '', '', '', '', '', '', '', '', '', '', '', '', '0', '4', 'Local industriel. commercial ou assimilé', '498', '0', 'S', 'sols', '', '', '2613', '5.879178', '47.202508'], ['2019-73262', '2019-06-17', '000001', "Vente en l'état futur d'achèvement", '10500', '23', '', 'AV DU 60EME RI', '4760', '25000', '25056', 'Besançon', '25', '', '', '25056000HY0390', '', '', '26', '', '', '', '', '', '', '', '', '', '1', '', '', '', '', '', '', '', '', '', '6.012115', '47.242435'], ['2019-73263', '2019-06-26', '000001', 'Vente', '234150', '77', '', 'GR GRANDE RUE', '2440', '25000', '25056', 'Besançon', '25', '', '', '25056000AC0123', '', '', '21', '', '', '', '', '', '', '', '', '', '1', '2', 'Appartement', '35', '1', '', '', '', '', '', '6.025504', '47.237504'], ['2019-73263', '2019-06-26', '000001', 'Vente', '234150', '77', '', 'GR GRANDE RUE', '2440', '25000', '25056', 'Besançon', '25', '', '', '25056000AC0123', '', '', '18', '', '19', '', '20', '', '', '', '', '', '3', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.025504', '47.237504'], ['2019-73263', '2019-06-26', '000001', 'Vente', '234150', '77', '', 'GR GRANDE RUE', '2440', '25000', '25056', 'Besançon', '25', '', '', '25056000AC0123', '', '', '22', '', '', '', '', '', '', '', '', '', '1', '2', 'Appartement', '34', '1', '', '', '', '', '', '6.025504', '47.237504'], ['2019-73263', '2019-06-26', '000001', 'Vente', '234150', '77', '', 'GR GRANDE RUE', '2440', '25000', '25056', 'Besançon', '25', '', '', '25056000AC0123', '', '', '23', '', '', '', '', '', '', '', '', '', '1', '2', 'Appartement', '37', '1', '', '', '', '', '', '6.025504', '47.237504'], ['2019-73264', '2019-06-27', '000001', 'Vente', '20000', '', '', 'BOUT D AMONT', 'B008', '25320', '25105', 'Byans-sur-Doubs', '25', '', '', '25105000AD0110', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'J', 'jardins', '', '', '98', '5.859898', '47.114324'], ['2019-73264', '2019-06-27', '000001', 'Vente', '20000', '19', '', 'CHE DU BOUT D AMONT', '0015', '25320', '25105', 'Byans-sur-Doubs', '25', '', '', '25105000AD0111', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '30', '1', 'S', 'sols', '', '', '46', '5.859639', '47.114408'], ['2019-73265', '2019-06-21', '000001', 'Vente', '380000', '25', '', 'RUE DU LYCEE', '3220', '25000', '25056', 'Besançon', '25', '', '', '25056000AW0069', '', '', '4', '', '', '', '', '', '', '', '', '', '1', '2', 'Appartement', '66', '4', '', '', '', '', '', '6.021866', '47.23722'], ['2019-73265', '2019-06-21', '000001', 'Vente', '380000', '25', '', 'RUE DU LYCEE', '3220', '25000', '25056', 'Besançon', '25', '', '', '25056000AW0069', '', '', '3', '', '', '', '', '', '', '', '', '', '1', '2', 'Appartement', '72', '3', '', '', '', '', '', '6.021866', '47.23722'], ['2019-73265', '2019-06-21', '000001', 'Vente', '380000', '25', '', 'RUE DU LYCEE', '3220', '25000', '25056', 'Besançon', '25', '', '', '25056000AW0069', '', '', '5', '', '', '', '', '', '', '', '', '', '1', '2', 'Appartement', '35', '2', '', '', '', '', '', '6.021866', '47.23722'], ['2019-73265', '2019-06-21', '000001', 'Vente', '380000', '25', '', 'RUE DU LYCEE', '3220', '25000', '25056', 'Besançon', '25', '', '', '25056000AW0069', '', '', '5', '', '', '', '', '', '', '', '', '', '1', '2', 'Appartement', '14', '1', '', '', '', '', '', '6.021866', '47.23722'], ['2019-73266', '2019-06-21', '000001', 'Vente', '10000', '50', '1', 'RUE DE DOLE', '1620', '25000', '25056', 'Besançon', '25', '', '', '25056000HZ0218', '', '', '131', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.009127', '47.234555'], ['2019-73267', '2019-06-21', '000002', 'Vente', '490000', '48', '', 'RUE DE DOLE', '1620', '25000', '25056', 'Besançon', '25', '', '', '25056000HZ0176', '', '', '', '', '', '', '', '', '', '', '', '', '0', '2', 'Appartement', '37', '1', 'S', 'sols', '', '', '274', '6.009827', '47.23453'], ['2019-73267', '2019-06-21', '000002', 'Vente', '490000', '48', '', 'RUE DE DOLE', '1620', '25000', '25056', 'Besançon', '25', '', '', '25056000HZ0176', '', '', '', '', '', '', '', '', '', '', '', '', '0', '2', 'Appartement', '25', '1', 'S', 'sols', '', '', '274', '6.009827', '47.23453'], ['2019-73267', '2019-06-21', '000002', 'Vente', '490000', '48', '', 'RUE DE DOLE', '1620', '25000', '25056', 'Besançon', '25', '', '', '25056000HZ0176', '', '', '', '', '', '', '', '', '', '', '', '', '0', '3', 'Dépendance', '', '0', 'S', 'sols', '', '', '274', '6.009827', '47.23453'], ['2019-73267', '2019-06-21', '000002', 'Vente', '490000', '48', '', 'RUE DE DOLE', '1620', '25000', '25056', 'Besançon', '25', '', '', '25056000HZ0176', '', '', '', '', '', '', '', '', '', '', '', '', '0', '2', 'Appartement', '31', '1', 'S', 'sols', '', '', '274', '6.009827', '47.23453'], ['2019-73267', '2019-06-21', '000002', 'Vente', '490000', '48', '', 'RUE DE DOLE', '1620', '25000', '25056', 'Besançon', '25', '', '', '25056000HZ0176', '', '', '', '', '', '', '', '', '', '', '', '', '0', '2', 'Appartement', '58', '3', 'S', 'sols', '', '', '274', '6.009827', '47.23453'], ['2019-73267', '2019-06-21', '000002', 'Vente', '490000', '48', '', 'RUE DE DOLE', '1620', '25000', '25056', 'Besançon', '25', '', '', '25056000HZ0176', '', '', '', '', '', '', '', '', '', '', '', '', '0', '2', 'Appartement', '22', '1', 'S', 'sols', '', '', '274', '6.009827', '47.23453'], ['2019-73267', '2019-06-21', '000002', 'Vente', '490000', '48', '', 'RUE DE DOLE', '1620', '25000', '25056', 'Besançon', '25', '', '', '25056000HZ0176', '', '', '', '', '', '', '', '', '', '', '', '', '0', '2', 'Appartement', '144', '5', 'S', 'sols', '', '', '274', '6.009827', '47.23453'], ['2019-73267', '2019-06-21', '000002', 'Vente', '490000', '48', '', 'RUE DE DOLE', '1620', '25000', '25056', 'Besançon', '25', '', '', '25056000HZ0176', '', '', '', '', '', '', '', '', '', '', '', '', '0', '4', 'Local industriel. commercial ou assimilé', '40', '0', 'S', 'sols', '', '', '274', '6.009827', '47.23453'], ['2019-73267', '2019-06-21', '000002', 'Vente', '490000', '48', '', 'RUE DE DOLE', '1620', '25000', '25056', 'Besançon', '25', '', '', '25056000HZ0176', '', '', '', '', '', '', '', '', '', '', '', '', '0', '4', 'Local industriel. commercial ou assimilé', '75', '0', 'S', 'sols', '', '', '274', '6.009827', '47.23453'], ['2019-73267', '2019-06-21', '000002', 'Vente', '490000', '48', '', 'RUE DE DOLE', '1620', '25000', '25056', 'Besançon', '25', '', '', '25056000HZ0176', '', '', '', '', '', '', '', '', '', '', '', '', '0', '2', 'Appartement', '22', '1', 'S', 'sols', '', '', '274', '6.009827', '47.23453'], ['2019-73267', '2019-06-21', '000002', 'Vente', '490000', '48', '', 'RUE DE DOLE', '1620', '25000', '25056', 'Besançon', '25', '', '', '25056000HZ0176', '', '', '', '', '', '', '', '', '', '', '', '', '0', '4', 'Local industriel. commercial ou assimilé', '71', '0', 'S', 'sols', '', '', '274', '6.009827', '47.23453'], ['2019-73267', '2019-06-21', '000002', 'Vente', '490000', '48', '', 'RUE DE DOLE', '1620', '25000', '25056', 'Besançon', '25', '', '', '25056000HZ0176', '', '', '', '', '', '', '', '', '', '', '', '', '0', '2', 'Appartement', '130', '5', 'S', 'sols', '', '', '274', '6.009827', '47.23453'], ['2019-73267', '2019-06-21', '000002', 'Vente', '490000', '48', '', 'RUE DE DOLE', '1620', '25000', '25056', 'Besançon', '25', '', '', '25056000HZ0176', '', '', '', '', '', '', '', '', '', '', '', '', '0', '2', 'Appartement', '45', '1', 'S', 'sols', '', '', '274', '6.009827', '47.23453'], ['2019-73267', '2019-06-21', '000002', 'Vente', '490000', '48', '', 'RUE DE DOLE', '1620', '25000', '25056', 'Besançon', '25', '', '', '25056000HZ0177', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '250', '6.009603', '47.234502'], ['2019-73267', '2019-06-21', '000002', 'Vente', '490000', '', '', 'RUE DE DOLE', '1620', '25000', '25056', 'Besançon', '25', '', '', '25056000HZ0190', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '197', '6.009559', '47.234622'], ['2019-73268', '2019-06-24', '000001', 'Vente', '75000', '', '', 'A PRAY', 'B054', '25220', '25112', 'Chalezeule', '25', '', '', '25112000AR0249', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'AB', 'terrains a bâtir', '', '', '572', '6.069728', '47.259251'], ['2019-73269', '2019-06-26', '000001', 'Vente', '83000', '8', '', 'RUE D ANVERS', '0200', '25000', '25056', 'Besançon', '25', '', '', '25056000AB0012', '', '', '50', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.02258', '47.238199'], ['2019-73269', '2019-06-26', '000001', 'Vente', '83000', '8', '', 'RUE D ANVERS', '0200', '25000', '25056', 'Besançon', '25', '', '', '25056000AB0012', '', '', '10', '', '50', '', '', '', '', '', '', '', '2', '4', 'Local industriel. commercial ou assimilé', '105', '0', '', '', '', '', '', '6.02258', '47.238199'], ['2019-73269', '2019-06-26', '000001', 'Vente', '83000', '8', '', 'RUE D ANVERS', '0200', '25000', '25056', 'Besançon', '25', '', '', '25056000AB0012', '', '', '5', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.02258', '47.238199'], ['2019-73270', '2019-06-26', '000001', 'Vente', '84500', '11', '', 'RUE DU MUGUET', '3610', '25000', '25056', 'Besançon', '25', '', '', '25056000BY0068', '', '', '1', '83.54', '2', '', '3', '', '', '', '', '', '3', '2', 'Appartement', '84', '5', '', '', '', '', '', '6.047337', '47.264985'], ['2019-73271', '2019-06-24', '000001', 'Vente', '262300', '59', '', 'RUE DE SALANS', '0020', '25410', '25502', 'Roset-Fluans', '25', '', '', '25502000ZA0032', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '128', '5', 'S', 'sols', '', '', '1000', '5.817583', '47.163582'], ['2019-73272', '2019-06-25', '000001', 'Vente', '94000', '18', 'B', 'RUE DE LA ROTONDE', '4590', '25000', '25056', 'Besançon', '25', '', '', '25056000BO0209', '', '', '5', '', '6', '', '', '', '', '', '', '', '2', '2', 'Appartement', '50', '3', '', '', '', '', '', '6.028318', '47.248795'], ['2019-73272', '2019-06-25', '000001', 'Vente', '94000', '18', 'B', 'RUE DE LA ROTONDE', '4590', '25000', '25056', 'Besançon', '25', '', '', '25056000BO0209', '', '', '10', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.028318', '47.248795'], ['2019-73273', '2019-06-27', '000001', 'Vente', '6000', '102', '', 'RUE DE BELFORT', '0390', '25000', '25056', 'Besançon', '25', '', '', '25056000CL0054', '', '', '48', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.037784', '47.252741'], ['2019-73274', '2019-06-27', '000001', 'Vente', '44700', '11', '', 'AV LOUISE MICHEL', '3185', '25000', '25056', 'Besançon', '25', '', '', '25056000IK0043', '', '', '113', '22.18', '43', '', '', '', '', '', '', '', '2', '4', 'Local industriel. commercial ou assimilé', '18', '0', '', '', '', '', '', '6.013998', '47.235191'], ['2019-73275', '2019-06-24', '000001', 'Vente', '106750', '11', 'D', 'RUE ALEXIS CHOPARD', '0080', '25000', '25056', 'Besançon', '25', '', '', '25056000CV0353', '', '', '109', '', '19', '56.08', '', '', '', '', '', '', '2', '2', 'Appartement', '56', '2', '', '', '', '', '', '6.031472', '47.247769'], ['2019-73275', '2019-06-24', '000001', 'Vente', '106750', '11', 'D', 'RUE ALEXIS CHOPARD', '0080', '25000', '25056', 'Besançon', '25', '', '', '25056000CV0353', '', '', '109', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.031472', '47.247769'], ['2019-73276', '2019-06-21', '000001', 'Vente', '68000', '9', '', 'RUE EUGENE SAVOYE', '1910', '25000', '25056', 'Besançon', '25', '', '', '25056000BH0337', '', '', '15', '', '18', '', '5', '', '', '', '', '', '3', '2', 'Appartement', '35', '2', '', '', '', '', '', '6.021595', '47.250296'], ['2019-73276', '2019-06-21', '000001', 'Vente', '68000', '9', '', 'RUE EUGENE SAVOYE', '1910', '25000', '25056', 'Besançon', '25', '', '', '25056000BH0337', '', '', '29', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.021595', '47.250296'], ['2019-73277', '2019-06-25', '000001', 'Vente', '272000', '10', '', 'RUE DES PERVENCHES', '0036', '25770', '25542', 'Serre-les-Sapins', '25', '', '', '25542000AC0140', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '125', '6', 'S', 'sols', '', '', '815', '5.934635', '47.24599'], ['2019-73278', '2019-06-27', '000001', 'Vente', '80000', '', '', 'LA VAUREUGE', 'B175', '25340', '25574', 'Uzelle', '25', '', '', '255740000B0941', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'VE', 'vergers', '', '', '1650', '6.476527', '47.469521'], ['2019-73278', '2019-06-27', '000001', 'Vente', '80000', '5074', '', 'LA VAUREUGE', 'B175', '25340', '25574', 'Uzelle', '25', '', '', '255740000B0943', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '151', '5', 'S', 'sols', '', '', '525', '6.476167', '47.469521'], ['2019-73279', '2019-06-28', '000001', 'Vente', '76000', '4', 'M', 'RUE LOUIS PERGAUD', '3180', '25000', '25056', 'Besançon', '25', '', '', '25056000HZ0184', '', '', '42', '', '43', '', '', '', '', '', '', '', '2', '4', 'Local industriel. commercial ou assimilé', '60', '0', '', '', '', '', '', '6.008128', '47.235586'], ['2019-73280', '2019-06-27', '000001', 'Vente', '137500', '', '', 'SOUS LA ROUOTTE', 'B079', '25250', '25327', 'Lanthenans', '25', '', '', '253270000A0096', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'VE', 'vergers', '', '', '1498', '6.625907', '47.395667'], ['2019-73280', '2019-06-27', '000001', 'Vente', '137500', '10', '', "RUE DE L'EGLISE", '0020', '25250', '25327', 'Lanthenans', '25', '', '', '253270000A0148', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '50', '2', 'S', 'sols', '', '', '1160', '6.626747', '47.395505'], ['2019-73280', '2019-06-27', '000001', 'Vente', '137500', '10', '', "RUE DE L'EGLISE", '0020', '25250', '25327', 'Lanthenans', '25', '', '', '253270000A0148', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '72', '3', 'S', 'sols', '', '', '1160', '6.626747', '47.395505'], ['2019-73280', '2019-06-27', '000001', 'Vente', '137500', '', '', 'AU VILLAGE', 'B092', '25250', '25327', 'Lanthenans', '25', '', '', '253270000A0149', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '112', '6.6262', '47.395559'], ['2019-73281', '2019-02-07', '000001', 'Vente', '13100', '19', '', 'RUE DU FBG SAINT PIERRE', '1750', '25300', '25462', 'Pontarlier', '25', '', '', '25462000AV0409', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '131', '6.351215', '46.904442'], ['2019-73282', '2019-04-01', '000001', 'Vente', '261750', '23', '', 'LOT LES TILLEULS', 'A005', '25690', '25039', 'Avoudrey', '25', '', '', '25039000ZV0082', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '107', '6', 'S', 'sols', '', '', '1145', '6.432999', '47.140224'], ['2019-73283', '2019-03-29', '000001', 'Vente', '233250', '17', '', 'RUE DU CRET', '0013', '25160', '25362', 'Malpas', '25', '', '', '253620000B0311', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '107', '4', 'S', 'sols', '', '', '415', '6.289856', '46.827263'], ['2019-73284', '2019-04-05', '000001', 'Vente', '359900', '', '', 'METAU', 'B042', '25160', '25525', 'Saint-Point-Lac', '25', '', '', '25525000AA0018', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'AG', "terrains d'agrément", '', '', '98', '6.294621', '46.811633'], ['2019-73284', '2019-04-05', '000001', 'Vente', '359900', '8', '', 'RUE DU LEVANT', '0039', '25160', '25525', 'Saint-Point-Lac', '25', '', '', '25525000AA0025', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '105', '6', 'S', 'sols', '', '', '860', '6.294864', '46.811515'], ['2019-73285', '2019-03-27', '000001', 'Vente', '3700', '', '', 'AU CREUX TENDARD', 'B052', '25560', '25041', 'Bannans', '25', '', '', '250410000A0207', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'BR', 'futaies résineuses', '', '', '3613', '6.217589', '46.917902'], ['2019-73285', '2019-03-27', '000001', 'Vente', '3700', '', '', 'AU CREUX TENDARD', 'B052', '25560', '25041', 'Bannans', '25', '', '', '250410000A0207', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'L', 'landes', '', '', '529', '6.217589', '46.917902'], ['2019-73285', '2019-03-27', '000001', 'Vente', '3700', '', '', 'AU CREUX TENDARD', 'B052', '25560', '25041', 'Bannans', '25', '', '', '250410000A0207', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'L', 'landes', '', '', '1868', '6.217589', '46.917902'], ['2019-73286', '2019-03-29', '000001', 'Vente', '12800', '', '', 'DERRIERE MOURENBOZ', 'B111', '25560', '25259', 'Frasne', '25', '', '', '252590000D0107', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'BR', 'futaies résineuses', '', '', '7810', '6.133946', '46.861455'], ['2019-73287', '2019-04-02', '000001', 'Vente', '135000', '49', '', 'RUE CART BROUMET', '0011', '25240', '25413', 'Mouthe', '25', '', '', '25413000AD0281', '', '', '13', '56.5', '5', '', '', '', '', '', '', '', '2', '2', 'Appartement', '56', '3', '', '', '', '', '', '6.18813', '46.705305'], ['2019-73288', '2019-04-04', '000001', 'Vente', '34805', '', '', 'CRET DE LA RAPPE', 'B028', '25300', '25204', 'Doubs', '25', '', '', '25204000AA0362', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'AB', 'terrains a bâtir', '', '', '243', '6.352259', '46.93198'], ['2019-73289', '2019-04-09', '000001', 'Vente', '148500', '8', 'C', 'RUE DU TELESIEGE', '0177', '25370', '25380', 'Métabief', '25', '', '', '25380000AH0031', '', '', '236', '', '266', '54.9', '', '', '', '', '', '', '2', '2', 'Appartement', '55', '3', '', '', '', '', '', '6.352727', '46.771683'], ['2019-73289', '2019-04-09', '000001', 'Vente', '148500', '8', 'C', 'RUE DU TELESIEGE', '0177', '25370', '25380', 'Métabief', '25', '', '', '25380000AH0031', '', '', '241', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.352727', '46.771683'], ['2019-73290', '2019-03-19', '000001', 'Vente', '10000', '', '', 'EN DESSUS DES CHEMINS', 'B123', '25290', '25434', 'Ornans', '25', '', '', '254340000F0224', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'T', 'terres', '', '', '2420', '6.158976', '47.097823'], ['2019-73291', '2019-03-18', '000001', 'Vente', '123000', '', '', 'LA PLANTE', 'B107', '25930', '25339', 'Lods', '25', '', '', '25339000AC0209', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'J', 'jardins', '', '', '194', '6.251337', '47.043163'], ['2019-73291', '2019-03-18', '000001', 'Vente', '123000', '', '', 'LA PLANTE', 'B107', '25930', '25339', 'Lods', '25', '', '', '25339000AC0211', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'J', 'jardins', '', '', '75', '6.251325', '47.043071'], ['2019-73291', '2019-03-18', '000001', 'Vente', '123000', '4', '', 'RUE COMMANDANT VUILLEMIN', '0016', '25930', '25339', 'Lods', '25', '', '', '25339000AC0212', '', '', '4', '104.6', '', '', '', '', '', '', '', '', '1', '2', 'Appartement', '27', '1', '', '', '', '', '', '6.251215', '47.043084'], ['2019-73291', '2019-03-18', '000001', 'Vente', '123000', '4', '', 'RUE COMMANDANT VUILLEMIN', '0016', '25930', '25339', 'Lods', '25', '', '', '25339000AC0212', '', '', '7', '', '8', '', '', '', '', '', '', '', '2', '1', 'Maison', '84', '3', '', '', '', '', '', '6.251215', '47.043084'], ['2019-73292', '2019-03-21', '000001', 'Vente', '213000', '4', '', 'RUE DU CDT VALENTIN', '0520', '25300', '25462', 'Pontarlier', '25', '', '', '25462000AL0247', '', '', '16', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.360446', '46.902745'], ['2019-73292', '2019-03-21', '000001', 'Vente', '213000', '4', '', 'RUE DU CDT VALENTIN', '0520', '25300', '25462', 'Pontarlier', '25', '', '', '25462000AL0247', '', '', '11', '', '15', '', '', '', '', '', '', '', '2', '2', 'Appartement', '88', '4', '', '', '', '', '', '6.360446', '46.902745'], ['2019-73292', '2019-03-21', '000001', 'Vente', '213000', '4', '', 'RUE DU CDT VALENTIN', '0520', '25300', '25462', 'Pontarlier', '25', '', '', '25462000AL0247', '', '', '20', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.360446', '46.902745'], ['2019-73293', '2019-04-02', '000001', 'Vente', '355000', '6', '', 'PL DES MINIMES', '0040', '25500', '25403', 'Montlebon', '25', '', '', '25403000AB0372', '', '', '48', '', '', '', '', '', '', '', '', '', '1', '2', 'Appartement', '225', '4', '', '', '', '', '', '6.606871', '47.044171'], ['2019-73293', '2019-04-02', '000001', 'Vente', '355000', '6', '', 'PL DES MINIMES', '0040', '25500', '25403', 'Montlebon', '25', '', '', '25403000AB0372', '', '', '4', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.606871', '47.044171'], ['2019-73294', '2019-03-26', '000001', 'Vente', '205000', '20', '', 'RUE DE LA REPUBLIQUE', '1650', '25300', '25462', 'Pontarlier', '25', '', '', '25462000AH0063', '', '', '28', '', '7', '95.17', '', '', '', '', '', '', '2', '4', 'Local industriel. commercial ou assimilé', '100', '0', '', '', '', '', '', '6.357004', '46.903224'], ['2019-73295', '2019-04-03', '000001', 'Vente', '15000', '54', '', 'ALL DU TERTRE', '0178', '25370', '25380', 'Métabief', '25', '', '', '25380000AH0148', '', '', '38', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.351252', '46.769852'], ['2019-73296', '2019-04-10', '000001', 'Vente', '8500', '', '', 'A LA COTE GRUAND', 'B220', '25300', '25157', 'La Cluse-et-Mijoux', '25', '', '', '251570000B1125', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'BR', 'futaies résineuses', '', '', '8850', '6.39134', '46.858313'], ['2019-73297', '2019-03-19', '000001', 'Vente', '275000', '10', '', 'RUE LA GARE', '0018', '25650', '25347', 'La Longeville', '25', '', '', '253470000B1570', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '107', '4', 'S', 'sols', '', '', '999', '6.461807', '46.995261'], ['2019-73298', '2019-04-03', '000001', 'Vente', '17000', '5895', '', 'PL XAVIER AUTHIER', '0192', '25370', '25380', 'Métabief', '25', '', '', '25380000AI0023', '', '', '32', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.35748', '46.769716'], ['2019-73299', '2019-04-08', '000001', 'Vente', '150000', '5', 'D', 'PL XAVIER AUTHIER', '0192', '25370', '25380', 'Métabief', '25', '', '', '25380000AI0039', '', '', '158', '', '65', '47.6', '72', '', '', '', '', '', '3', '2', 'Appartement', '49', '2', '', '', '', '', '', '6.35953', '46.770332'], ['2019-73299', '2019-04-08', '000001', 'Vente', '150000', '5', 'D', 'PL XAVIER AUTHIER', '0192', '25370', '25380', 'Métabief', '25', '', '', '25380000AI0039', '', '', '177', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.35953', '46.770332'], ['2019-73300', '2019-04-09', '000001', 'Vente', '2148.75', '', '', 'LES BAUMETTES', 'B003', '25520', '25517', 'Saint-Gorgon-Main', '25', '', '', '25517000AB0012', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '191', '6.322129', '47.017736'], ['2019-73301', '2019-04-09', '000001', 'Vente', '1563.75', '', '', 'LE VILLAGE', 'B121', '25520', '25517', 'Saint-Gorgon-Main', '25', '', '', '25517000AA0018', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '36', '6.321881', '47.023481'], ['2019-73301', '2019-04-09', '000001', 'Vente', '1563.75', '', '', 'LE VILLAGE', 'B121', '25520', '25517', 'Saint-Gorgon-Main', '25', '', '', '25517000AA0020', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '103', '6.321677', '47.023429'], ['2019-73302', '2019-04-10', '000001', 'Vente', '243350', '1', '', 'RUE ANDRE MOCKLI', '0048', '25300', '25462', 'Pontarlier', '25', '', '', '25462000AT0280', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '85', '4', 'S', 'sols', '', '', '271', '6.344602', '46.898329'], ['2019-73302', '2019-04-10', '000001', 'Vente', '243350', '14', '', 'RUE DES GRANGES', '0900', '25300', '25462', 'Pontarlier', '25', '', '', '25462000AT0281', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '32', '6.345108', '46.898167'], ['2019-73302', '2019-04-10', '000001', 'Vente', '243350', '14', '', 'RUE DES GRANGES', '0900', '25300', '25462', 'Pontarlier', '25', '', '', '25462000AT0282', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '462', '6.344519', '46.898594'], ['2019-73303', '2019-03-28', '000001', 'Vente', '10165.7', '', '', 'LA FRAITE', 'B031', '25510', '25268', 'Germéfontaine', '25', '', '', '25268000ZA0037', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'T', 'terres', '', '', '3945', '6.478258', '47.231328'], ['2019-73303', '2019-03-28', '000001', 'Vente', '10165.7', '', '', 'LA FRAITE', 'B031', '25510', '25268', 'Germéfontaine', '25', '', '', '25268000ZA0037', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'T', 'terres', '', '', '3945', '6.478258', '47.231328'], ['2019-73303', '2019-03-28', '000001', 'Vente', '10165.7', '', '', 'LA FRAITE', 'B031', '25510', '25268', 'Germéfontaine', '25', '', '', '25268000ZA0037', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'L', 'landes', '', '', '680', '6.478258', '47.231328'], ['2019-73303', '2019-03-28', '000001', 'Vente', '10165.7', '', '', 'COMBE DE MEUX', 'B014', '25510', '25268', 'Germéfontaine', '25', '', '', '25268000ZI0054', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'T', 'terres', '', '', '17230', '6.469269', '47.215718'], ['2019-73304', '2019-04-02', '000001', 'Vente', '65050', '5', '', 'LA GAUFFRE', 'B574', '25300', '25157', 'La Cluse-et-Mijoux', '25', '', '', '251570000B0842', '', '', '11', '43.5', '', '', '', '', '', '', '', '', '1', '2', 'Appartement', '43', '1', '', '', '', '', '', '6.371482', '46.859018'], ['2019-73305', '2019-04-04', '000001', 'Vente', '208000', '2', '', 'AV DE LA GARE', '0040', '25160', '25320', 'Labergement-Sainte-Marie', '25', '', '', '25320000AC0003', '', '', '32', '1.8', '33', '110', '', '', '', '', '', '', '2', '2', 'Appartement', '115', '3', '', '', '', '', '', '6.280727', '46.773739'], ['2019-73306', '2019-04-06', '000001', 'Vente', '172192', '12', '', 'PL BUGNET', '0060', '25270', '25334', 'Levier', '25', '', '', '25334000AE0079', '', '', '39', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.11701', '46.953558'], ['2019-73306', '2019-04-06', '000001', 'Vente', '172192', '1', '', 'PL DE VERDUN', '0460', '25270', '25334', 'Levier', '25', '', '', '25334000AE0079', '', '', '29', '', '62', '110.14', '', '', '', '', '', '', '2', '2', 'Appartement', '100', '4', '', '', '', '', '', '6.11701', '46.953558'], ['2019-73307', '2019-03-28', '000001', 'Vente', '70100', '', '', 'AU VILLAGE', 'B163', '25270', '25180', 'Crouzet-Migette', '25', '', '', '25180000AB0288', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '136', '6.010442', '46.956924'], ['2019-73307', '2019-03-28', '000001', 'Vente', '70100', '5001', '', 'RUE DE L AUBERGE', '0003', '25270', '25180', 'Crouzet-Migette', '25', '', '', '25180000AB0290', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '68', '1', 'S', 'sols', '', '', '72', '6.01054', '46.956921'], ['2019-73308', '2019-04-05', '000001', 'Vente', '134000', '68', '', 'RUE DE LA REPUBLIQUE', '1650', '25300', '25462', 'Pontarlier', '25', '', '', '25462000AB0135', '', '', '62', '76', '', '', '', '', '', '', '', '', '1', '2', 'Appartement', '80', '3', '', '', '', '', '', '6.353407', '46.90467'], ['2019-73309', '2019-04-18', '000001', 'Vente', '210000', '', '', 'LE VILLAGE', 'B039', '25690', '25342', 'Longechaux', '25', '', '', '253420000B0363', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '299', '6.431855', '47.16356'], ['2019-73309', '2019-04-18', '000001', 'Vente', '210000', '4', 'B', 'LA FAYOTTE', 'B018', '25690', '25342', 'Longechaux', '25', '', '', '253420000B0366', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '212', '4', 'S', 'sols', '', '', '456', '6.431749', '47.163626'], ['2019-73310', '2019-03-25', '000001', 'Vente', '4700', '', '', 'CHAMPS DE LA CROIX', 'B007', '25240', '25619', 'Les Villedieu', '25', '', '', '256190000A0106', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'L', 'landes', 'FRICH', 'Friche', '1763', '6.275617', '46.740262'], ['2019-73310', '2019-03-25', '000001', 'Vente', '4700', '', '', 'LA GOUTTE DOR', 'B022', '25240', '25619', 'Les Villedieu', '25', '', '', '25619000ZA0019', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'T', 'terres', '', '', '7315', '6.274298', '46.739414'], ['2019-73310', '2019-03-25', '000001', 'Vente', '4700', '', '', 'LA GOUTTE DOR', 'B022', '25240', '25619', 'Les Villedieu', '25', '', '', '25619000ZA0019', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'T', 'terres', '', '', '7315', '6.274298', '46.739414'], ['2019-73310', '2019-03-25', '000001', 'Vente', '4700', '', '', 'LA GOUTTE DOR', 'B022', '25240', '25619', 'Les Villedieu', '25', '', '', '25619000ZA0019', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '3370', '6.274298', '46.739414'], ['2019-73311', '2019-04-05', '000001', "Vente en l'état futur d'achèvement", '195000', '24', '', 'RUE DE BESANCON', '0200', '25300', '25462', 'Pontarlier', '25', '', '', '25462000AY0376', '', '', '53', '', '', '', '', '', '', '', '', '', '1', '', '', '', '', '', '', '', '', '', '6.350818', '46.906449'], ['2019-73311', '2019-04-05', '000001', "Vente en l'état futur d'achèvement", '195000', '24', '', 'RUE DE BESANCON', '0200', '25300', '25462', 'Pontarlier', '25', '', '', '25462000AY0376', '', '', '36', '', '', '', '', '', '', '', '', '', '1', '', '', '', '', '', '', '', '', '', '6.350818', '46.906449'], ['2019-73312', '2019-04-02', '000001', 'Vente', '86000', '4', '', 'RUE EDEN ROC', '0014', '25370', '25307', 'Les Hôpitaux-Neufs', '25', '', '', '25307000AE0127', '', '', '12', '34.25', '2', '', '', '', '', '', '', '', '2', '2', 'Appartement', '32', '2', '', '', '', '', '', '6.372494', '46.772553'], ['2019-73313', '2019-04-11', '000001', 'Vente', '175000', '10', '', 'RUE ANATOLE FRANCE', '0040', '25300', '25462', 'Pontarlier', '25', '', '', '25462000AW0077', '', '', '1', '', '7', '81', '', '', '', '', '', '', '2', '2', 'Appartement', '82', '3', '', '', '', '', '', '6.347814', '46.904978'], ['2019-73314', '2019-04-15', '000001', 'Vente', '111500', '42', '', 'RUE GAMBETTA', '0830', '25300', '25462', 'Pontarlier', '25', '', '', '25462000AC0110', '', '', '4', '', '7', '50.28', '', '', '', '', '', '', '2', '2', 'Appartement', '50', '3', '', '', '', '', '', '6.355707', '46.902949'], ['2019-73315', '2019-04-11', '000001', 'Vente', '410000', '8', '', 'SOUS LE GRAND BOIS', '0026', '25160', '25361', 'Malbuisson', '25', '', '', '25361000AC0267', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '133', '5', 'S', 'sols', '', '', '865', '6.300982', '46.793507'], ['2019-73316', '2019-04-09', '000001', 'Vente', '3800', '23', '', 'RUE DU VILLAGE', '0183', '25370', '25380', 'Métabief', '25', '', '', '25380000AK0017', '', '', '96', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.352621', '46.773831'], ['2019-73317', '2019-04-26', '000001', 'Vente', '270000', '3', '', 'RUE GONSALVE PERTUSIER', '0248', '25500', '25411', 'Morteau', '25', '', '', '25411000AA0152', '', '', '', '', '', '', '', '', '', '', '', '', '0', '3', 'Dépendance', '', '0', 'S', 'sols', '', '', '610', '6.603029', '47.054948'], ['2019-73317', '2019-04-26', '000001', 'Vente', '270000', '3', '', 'RUE GONSALVE PERTUSIER', '0248', '25500', '25411', 'Morteau', '25', '', '', '25411000AA0152', '', '', '', '', '', '', '', '', '', '', '', '', '0', '3', 'Dépendance', '', '0', 'S', 'sols', '', '', '610', '6.603029', '47.054948'], ['2019-73317', '2019-04-26', '000001', 'Vente', '270000', '3', '', 'RUE GONSALVE PERTUSIER', '0248', '25500', '25411', 'Morteau', '25', '', '', '25411000AA0152', '', '', '', '', '', '', '', '', '', '', '', '', '0', '3', 'Dépendance', '', '0', 'S', 'sols', '', '', '610', '6.603029', '47.054948'], ['2019-73317', '2019-04-26', '000001', 'Vente', '270000', '3', '', 'RUE GONSALVE PERTUSIER', '0248', '25500', '25411', 'Morteau', '25', '', '', '25411000AA0152', '', '', '', '', '', '', '', '', '', '', '', '', '0', '2', 'Appartement', '55', '3', 'S', 'sols', '', '', '610', '6.603029', '47.054948'], ['2019-73317', '2019-04-26', '000001', 'Vente', '270000', '3', '', 'RUE GONSALVE PERTUSIER', '0248', '25500', '25411', 'Morteau', '25', '', '', '25411000AA0152', '', '', '', '', '', '', '', '', '', '', '', '', '0', '3', 'Dépendance', '', '0', 'S', 'sols', '', '', '610', '6.603029', '47.054948'], ['2019-73317', '2019-04-26', '000001', 'Vente', '270000', '3', '', 'RUE GONSALVE PERTUSIER', '0248', '25500', '25411', 'Morteau', '25', '', '', '25411000AA0152', '', '', '', '', '', '', '', '', '', '', '', '', '0', '3', 'Dépendance', '', '0', 'S', 'sols', '', '', '610', '6.603029', '47.054948'], ['2019-73317', '2019-04-26', '000001', 'Vente', '270000', '3', '', 'RUE GONSALVE PERTUSIER', '0248', '25500', '25411', 'Morteau', '25', '', '', '25411000AA0152', '', '', '', '', '', '', '', '', '', '', '', '', '0', '2', 'Appartement', '75', '3', 'S', 'sols', '', '', '610', '6.603029', '47.054948'], ['2019-73317', '2019-04-26', '000001', 'Vente', '270000', '3', '', 'RUE GONSALVE PERTUSIER', '0248', '25500', '25411', 'Morteau', '25', '', '', '25411000AA0152', '', '', '', '', '', '', '', '', '', '', '', '', '0', '3', 'Dépendance', '', '0', 'S', 'sols', '', '', '610', '6.603029', '47.054948'], ['2019-73318', '2019-04-25', '000001', 'Vente', '208900', '5', '', 'RUE DES MARRONNIERS', '0387', '25500', '25411', 'Morteau', '25', '', '', '25411000AC0034', '', '', '103', '', '105', '', '2', '71.71', '', '', '', '', '3', '2', 'Appartement', '72', '3', '', '', '', '', '', '6.602858', '47.059065'], ['2019-73319', '2019-04-26', '000001', 'Vente', '466300', '7', '', 'GR GRANDE RUE', '0920', '25130', '25321', 'Villers-le-Lac', '25', '', '', '25321000AB0058', '', '', '', '', '', '', '', '', '', '', '', '', '0', '2', 'Appartement', '61', '3', 'J', 'jardins', '', '', '1005', '6.668358', '47.058725'], ['2019-73319', '2019-04-26', '000001', 'Vente', '466300', '7', '', 'GR GRANDE RUE', '0920', '25130', '25321', 'Villers-le-Lac', '25', '', '', '25321000AB0058', '', '', '', '', '', '', '', '', '', '', '', '', '0', '2', 'Appartement', '64', '3', 'J', 'jardins', '', '', '1005', '6.668358', '47.058725'], ['2019-73319', '2019-04-26', '000001', 'Vente', '466300', '7', '', 'GR GRANDE RUE', '0920', '25130', '25321', 'Villers-le-Lac', '25', '', '', '25321000AB0058', '', '', '', '', '', '', '', '', '', '', '', '', '0', '2', 'Appartement', '65', '3', 'J', 'jardins', '', '', '1005', '6.668358', '47.058725'], ['2019-73319', '2019-04-26', '000001', 'Vente', '466300', '7', '', 'GR GRANDE RUE', '0920', '25130', '25321', 'Villers-le-Lac', '25', '', '', '25321000AB0058', '', '', '', '', '', '', '', '', '', '', '', '', '0', '2', 'Appartement', '64', '3', 'J', 'jardins', '', '', '1005', '6.668358', '47.058725'], ['2019-73319', '2019-04-26', '000001', 'Vente', '466300', '7', '', 'GR GRANDE RUE', '0920', '25130', '25321', 'Villers-le-Lac', '25', '', '', '25321000AB0058', '', '', '', '', '', '', '', '', '', '', '', '', '0', '3', 'Dépendance', '', '0', 'S', 'sols', '', '', '542', '6.668358', '47.058725'], ['2019-73319', '2019-04-26', '000001', 'Vente', '466300', '7', '', 'GR GRANDE RUE', '0920', '25130', '25321', 'Villers-le-Lac', '25', '', '', '25321000AB0058', '', '', '', '', '', '', '', '', '', '', '', '', '0', '2', 'Appartement', '65', '3', 'S', 'sols', '', '', '542', '6.668358', '47.058725'], ['2019-73319', '2019-04-26', '000001', 'Vente', '466300', '7', '', 'GR GRANDE RUE', '0920', '25130', '25321', 'Villers-le-Lac', '25', '', '', '25321000AB0058', '', '', '', '', '', '', '', '', '', '', '', '', '0', '3', 'Dépendance', '', '0', 'J', 'jardins', '', '', '1005', '6.668358', '47.058725'], ['2019-73319', '2019-04-26', '000001', 'Vente', '466300', '7', '', 'GR GRANDE RUE', '0920', '25130', '25321', 'Villers-le-Lac', '25', '', '', '25321000AB0058', '', '', '', '', '', '', '', '', '', '', '', '', '0', '2', 'Appartement', '52', '2', 'J', 'jardins', '', '', '1005', '6.668358', '47.058725'], ['2019-73319', '2019-04-26', '000001', 'Vente', '466300', '7', '', 'GR GRANDE RUE', '0920', '25130', '25321', 'Villers-le-Lac', '25', '', '', '25321000AB0058', '', '', '', '', '', '', '', '', '', '', '', '', '0', '2', 'Appartement', '64', '3', 'S', 'sols', '', '', '542', '6.668358', '47.058725'], ['2019-73319', '2019-04-26', '000001', 'Vente', '466300', '7', '', 'GR GRANDE RUE', '0920', '25130', '25321', 'Villers-le-Lac', '25', '', '', '25321000AB0058', '', '', '', '', '', '', '', '', '', '', '', '', '0', '2', 'Appartement', '59', '3', 'S', 'sols', '', '', '542', '6.668358', '47.058725'], ['2019-73319', '2019-04-26', '000001', 'Vente', '466300', '7', '', 'GR GRANDE RUE', '0920', '25130', '25321', 'Villers-le-Lac', '25', '', '', '25321000AB0058', '', '', '', '', '', '', '', '', '', '', '', '', '0', '3', 'Dépendance', '', '0', 'J', 'jardins', '', '', '1005', '6.668358', '47.058725'], ['2019-73319', '2019-04-26', '000001', 'Vente', '466300', '7', '', 'GR GRANDE RUE', '0920', '25130', '25321', 'Villers-le-Lac', '25', '', '', '25321000AB0058', '', '', '', '', '', '', '', '', '', '', '', '', '0', '3', 'Dépendance', '', '0', 'J', 'jardins', '', '', '1005', '6.668358', '47.058725'], ['2019-73319', '2019-04-26', '000001', 'Vente', '466300', '7', '', 'GR GRANDE RUE', '0920', '25130', '25321', 'Villers-le-Lac', '25', '', '', '25321000AB0058', '', '', '', '', '', '', '', '', '', '', '', '', '0', '3', 'Dépendance', '', '0', 'S', 'sols', '', '', '542', '6.668358', '47.058725'], ['2019-73319', '2019-04-26', '000001', 'Vente', '466300', '7', '', 'GR GRANDE RUE', '0920', '25130', '25321', 'Villers-le-Lac', '25', '', '', '25321000AB0058', '', '', '', '', '', '', '', '', '', '', '', '', '0', '2', 'Appartement', '61', '3', 'S', 'sols', '', '', '542', '6.668358', '47.058725'], ['2019-73319', '2019-04-26', '000001', 'Vente', '466300', '7', '', 'GR GRANDE RUE', '0920', '25130', '25321', 'Villers-le-Lac', '25', '', '', '25321000AB0058', '', '', '', '', '', '', '', '', '', '', '', '', '0', '2', 'Appartement', '60', '3', 'S', 'sols', '', '', '542', '6.668358', '47.058725'], ['2019-73319', '2019-04-26', '000001', 'Vente', '466300', '7', '', 'GR GRANDE RUE', '0920', '25130', '25321', 'Villers-le-Lac', '25', '', '', '25321000AB0058', '', '', '', '', '', '', '', '', '', '', '', '', '0', '2', 'Appartement', '52', '2', 'S', 'sols', '', '', '542', '6.668358', '47.058725'], ['2019-73319', '2019-04-26', '000001', 'Vente', '466300', '7', '', 'GR GRANDE RUE', '0920', '25130', '25321', 'Villers-le-Lac', '25', '', '', '25321000AB0058', '', '', '', '', '', '', '', '', '', '', '', '', '0', '2', 'Appartement', '64', '3', 'S', 'sols', '', '', '542', '6.668358', '47.058725'], ['2019-73319', '2019-04-26', '000001', 'Vente', '466300', '7', '', 'GR GRANDE RUE', '0920', '25130', '25321', 'Villers-le-Lac', '25', '', '', '25321000AB0058', '', '', '', '', '', '', '', '', '', '', '', '', '0', '3', 'Dépendance', '', '0', 'S', 'sols', '', '', '542', '6.668358', '47.058725'], ['2019-73319', '2019-04-26', '000001', 'Vente', '466300', '7', '', 'GR GRANDE RUE', '0920', '25130', '25321', 'Villers-le-Lac', '25', '', '', '25321000AB0058', '', '', '', '', '', '', '', '', '', '', '', '', '0', '2', 'Appartement', '59', '3', 'J', 'jardins', '', '', '1005', '6.668358', '47.058725'], ['2019-73319', '2019-04-26', '000001', 'Vente', '466300', '7', '', 'GR GRANDE RUE', '0920', '25130', '25321', 'Villers-le-Lac', '25', '', '', '25321000AB0058', '', '', '', '', '', '', '', '', '', '', '', '', '0', '2', 'Appartement', '52', '2', 'S', 'sols', '', '', '542', '6.668358', '47.058725'], ['2019-73319', '2019-04-26', '000001', 'Vente', '466300', '7', '', 'GR GRANDE RUE', '0920', '25130', '25321', 'Villers-le-Lac', '25', '', '', '25321000AB0058', '', '', '', '', '', '', '', '', '', '', '', '', '0', '2', 'Appartement', '52', '2', 'J', 'jardins', '', '', '1005', '6.668358', '47.058725'], ['2019-73319', '2019-04-26', '000001', 'Vente', '466300', '7', '', 'GR GRANDE RUE', '0920', '25130', '25321', 'Villers-le-Lac', '25', '', '', '25321000AB0058', '', '', '', '', '', '', '', '', '', '', '', '', '0', '2', 'Appartement', '60', '3', 'J', 'jardins', '', '', '1005', '6.668358', '47.058725'], ['2019-73320', '2019-04-23', '000001', 'Vente', '257650', '14', 'B', 'RUE DE L ETANG', '0035', '25390', '25349', 'Loray', '25', '', '', '25349000AD0034', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '85', '4', 'S', 'sols', '', '', '723', '6.491217', '47.152981'], ['2019-73321', '2019-04-12', '000001', 'Vente', '189000', '3', '', 'RUE DES BLEUETS', '0042', '25580', '25222', 'Étalans', '25', '', '', '25222000AC0138', '', '', '3', '114.3', '', '', '', '', '', '', '', '', '1', '2', 'Appartement', '114', '4', '', '', '', '', '', '6.267646', '47.154271'], ['2019-73322', '2019-04-25', '000001', 'Vente', '1380', '', '', 'AU VILLAGE HAUTEPIERRE', 'B639', '25580', '25424', 'Les Premiers Sapins', '25', '', '', '25424302AB0141', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '230', '6.286283', '47.047577'], ['2019-73323', '2019-04-12', '000001', 'Vente', '6000', '', '', 'COMBE A VORBILLON', 'B075', '25620', '25558', 'Tarcenay-Foucherans', '25', '', '', '255582500C0091', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'BT', 'taillis simples', '', '', '5735', '6.123183', '47.146691'], ['2019-73324', '2019-04-16', '000001', 'Vente', '435000', '9', '', 'RUE DE BESANCON', '0020', '25111', '25400', 'Montgesoye', '25', '', '', '25400000AB0192', '', '', '', '', '', '', '', '', '', '', '', '', '0', '3', 'Dépendance', '', '0', 'S', 'sols', '', '', '1495', '6.188985', '47.080959'], ['2019-73324', '2019-04-16', '000001', 'Vente', '435000', '9', '', 'RUE DE BESANCON', '0020', '25111', '25400', 'Montgesoye', '25', '', '', '25400000AB0192', '', '', '', '', '', '', '', '', '', '', '', '', '0', '2', 'Appartement', '200', '6', 'S', 'sols', '', '', '1495', '6.188985', '47.080959'], ['2019-73324', '2019-04-16', '000001', 'Vente', '435000', '9', '', 'RUE DE BESANCON', '0020', '25111', '25400', 'Montgesoye', '25', '', '', '25400000AB0192', '', '', '', '', '', '', '', '', '', '', '', '', '0', '3', 'Dépendance', '', '0', 'S', 'sols', '', '', '1495', '6.188985', '47.080959'], ['2019-73324', '2019-04-16', '000001', 'Vente', '435000', '9', '', 'RUE DE BESANCON', '0020', '25111', '25400', 'Montgesoye', '25', '', '', '25400000AB0192', '', '', '', '', '', '', '', '', '', '', '', '', '0', '2', 'Appartement', '100', '4', 'S', 'sols', '', '', '1495', '6.188985', '47.080959'], ['2019-73325', '2019-04-15', '000001', 'Vente', '188850', '3', '', 'IMP COTTI', '0127', '25160', '25320', 'Labergement-Sainte-Marie', '25', '', '', '25320000ZH0217', '', '', '335', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.280772', '46.77068'], ['2019-73325', '2019-04-15', '000001', 'Vente', '188850', '3', '', 'IMP COTTI', '0127', '25160', '25320', 'Labergement-Sainte-Marie', '25', '', '', '25320000ZH0217', '', '', '506', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.280772', '46.77068'], ['2019-73325', '2019-04-15', '000001', 'Vente', '188850', '3', '', 'IMP COTTI', '0127', '25160', '25320', 'Labergement-Sainte-Marie', '25', '', '', '25320000ZH0217', '', '', '317', '61.87', '343', '', '', '', '', '', '', '', '2', '2', 'Appartement', '60', '3', '', '', '', '', '', '6.280772', '46.77068'], ['2019-73326', '2019-04-26', '000001', 'Vente', '154000', '6', '', 'RUE DU PONT DU DIABLE', '0820', '25130', '25321', 'Villers-le-Lac', '25', '', '', '25321000AD0103', '', '', '3', '73.04', '', '', '', '', '', '', '', '', '1', '2', 'Appartement', '70', '3', '', '', '', '', '', '6.668374', '47.062284'], ['2019-73327', '2019-04-08', '000001', 'Vente', '137280', '7', '', 'ALL DES CHAMOIS', '0045', '25370', '25380', 'Métabief', '25', '', '', '25380000AH0353', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '29', '1', 'S', 'sols', '', '', '143', '6.350106', '46.767053'], ['2019-73328', '2019-04-18', '000001', 'Vente', '142400', '2', '', 'RUE DU FRONT DU LAC', '0030', '25160', '25361', 'Malbuisson', '25', '', '', '25361000AD0309', '', '', '223', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.307155', '46.802197'], ['2019-73328', '2019-04-18', '000001', 'Vente', '142400', '2', '', 'RUE DU FRONT DU LAC', '0030', '25160', '25361', 'Malbuisson', '25', '', '', '25361000AD0309', '', '', '256', '', '278', '51.07', '', '', '', '', '', '', '2', '2', 'Appartement', '51', '3', '', '', '', '', '', '6.307155', '46.802197'], ['2019-73329', '2019-04-04', '000001', 'Vente', '301600', '15', '', 'RUE DE ROCAPIN', '0047', '25390', '25288', 'Fournets-Luisans', '25', '', '', '25288000AD0011', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '138', '5', 'S', 'sols', '', '', '909', '6.568221', '47.110835'], ['2019-73330', '2019-04-08', '000001', 'Vente', '3000', '', '', 'BOIS DU TOUR', 'B016', '25500', '25160', 'Les Combes', '25', '', '', '251600000B0037', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'BR', 'futaies résineuses', '', '', '3565', '6.549005', '47.056719'], ['2019-73331', '2019-04-19', '000001', 'Vente', '373000', '', '', 'CHENAUX', 'B044', '25920', '25415', 'Mouthier-Haute-Pierre', '25', '', '', '25415000AB0114', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'J', 'jardins', '', '', '1365', '6.278129', '47.038446'], ['2019-73331', '2019-04-19', '000001', 'Vente', '373000', '', '', 'CHENAUX', 'B044', '25920', '25415', 'Mouthier-Haute-Pierre', '25', '', '', '25415000AB0114', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '60', '6.278129', '47.038446'], ['2019-73331', '2019-04-19', '000001', 'Vente', '373000', '10', '', 'RUE ERNEST REYER', '0050', '25920', '25415', 'Mouthier-Haute-Pierre', '25', '', '', '25415000AB0115', '', '', '', '', '', '', '', '', '', '', '', '', '0', '3', 'Dépendance', '', '0', 'S', 'sols', '', '', '1835', '6.277753', '47.03846'], ['2019-73331', '2019-04-19', '000001', 'Vente', '373000', '10', '', 'RUE ERNEST REYER', '0050', '25920', '25415', 'Mouthier-Haute-Pierre', '25', '', '', '25415000AB0115', '', '', '', '', '', '', '', '', '', '', '', '', '0', '4', 'Local industriel. commercial ou assimilé', '', '0', 'S', 'sols', '', '', '1835', '6.277753', '47.03846'], ['2019-73331', '2019-04-19', '000001', 'Vente', '373000', '10', '', 'RUE ERNEST REYER', '0050', '25920', '25415', 'Mouthier-Haute-Pierre', '25', '', '', '25415000AB0115', '', '', '', '', '', '', '', '', '', '', '', '', '0', '4', 'Local industriel. commercial ou assimilé', '144', '0', 'S', 'sols', '', '', '1835', '6.277753', '47.03846'], ['2019-73331', '2019-04-19', '000001', 'Vente', '373000', '10', '', 'RUE ERNEST REYER', '0050', '25920', '25415', 'Mouthier-Haute-Pierre', '25', '', '', '25415000AB0115', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '90', '3', 'S', 'sols', '', '', '1835', '6.277753', '47.03846'], ['2019-73331', '2019-04-19', '000001', 'Vente', '373000', '', '', 'CHENAUX', 'B044', '25920', '25415', 'Mouthier-Haute-Pierre', '25', '', '', '25415000AB0116', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '4005', '6.277883', '47.038041'], ['2019-73332', '2019-04-08', '000001', 'Vente', '580', '', '', 'AU VILLAGE BAS', 'B161', '25580', '25300', 'Guyans-Durnes', '25', '', '', '25300000AC0008', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '145', '6.24286', '47.121332'], ['2019-73333', '2019-04-30', '000001', 'Vente', '327500', '12', '', 'RUE DU COTEAU', '0092', '25500', '25240', 'Les Fins', '25', '', '', '25240000AI0323', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '151', '6', 'S', 'sols', '', '', '792', '6.615872', '47.069896'], ['2019-73334', '2019-04-30', '000001', 'Vente', '116000', '5', '', 'RUE DES FOURCHES', '0031', '25530', '25601', 'Vercel-Villedieu-le-Camp', '25', '', '', '25601000AC0082', '', '', '11', '', '6', '92.18', '', '', '', '', '', '', '2', '2', 'Appartement', '90', '2', '', '', '', '', '', '6.397959', '47.182652'], ['2019-73335', '2019-04-26', '000001', 'Vente', '300000', '8', '', 'RUE SAINT CLAUDE', '0050', '25390', '25288', 'Fournets-Luisans', '25', '', '', '25288352AB0038', '', '', '', '', '', '', '', '', '', '', '', '', '0', '4', 'Local industriel. commercial ou assimilé', '550', '0', 'S', 'sols', '', '', '500', '6.54437', '47.095448'], ['2019-73335', '2019-04-26', '000001', 'Vente', '300000', '8', '', 'RUE SAINT CLAUDE', '0050', '25390', '25288', 'Fournets-Luisans', '25', '', '', '25288352AB0038', '', '', '', '', '', '', '', '', '', '', '', '', '0', '4', 'Local industriel. commercial ou assimilé', '300', '0', 'S', 'sols', '', '', '500', '6.54437', '47.095448'], ['2019-73335', '2019-04-26', '000001', 'Vente', '300000', '8', '', 'RUE SAINT CLAUDE', '0050', '25390', '25288', 'Fournets-Luisans', '25', '', '', '25288352AB0038', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '80', '3', 'S', 'sols', '', '', '500', '6.54437', '47.095448'], ['2019-73335', '2019-04-26', '000001', 'Vente', '300000', '', '', 'A LUISANS', 'B045', '25390', '25288', 'Fournets-Luisans', '25', '', '', '25288352AB0109', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '109', '6.544438', '47.09553'], ['2019-73336', '2019-04-30', '000001', 'Vente', '145000', '9', '', 'RUE DE L HELVETIE', '0310', '25500', '25411', 'Morteau', '25', '', '', '25411000AA0079', '', '', '26', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.608424', '47.055204'], ['2019-73336', '2019-04-30', '000001', 'Vente', '145000', '11', '', 'RUE DE L HELVETIE', '0310', '25500', '25411', 'Morteau', '25', '', '', '25411000AA0079', '', '', '11', '64.17', '', '', '', '', '', '', '', '', '1', '2', 'Appartement', '66', '3', '', '', '', '', '', '6.608424', '47.055204'], ['2019-73337', '2019-04-13', '000001', 'Vente', '270000', '10', '', 'RUE MAURICE DEBOIS', '0216', '25270', '25334', 'Levier', '25', '', '', '25334000AD0202', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '134', '8', 'S', 'sols', '', '', '771', '6.120949', '46.955989'], ['2019-73338', '2019-04-13', '000001', 'Vente', '3500', '', '', 'SUR LA CUCHE', 'B024', '25520', '25549', 'Sombacour', '25', '', '', '255490000C1021', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'BR', 'futaies résineuses', '', '', '1170', '6.230592', '46.935648'], ['2019-73338', '2019-04-13', '000001', 'Vente', '3500', '', '', 'SUR LA CUCHE', 'B024', '25520', '25549', 'Sombacour', '25', '', '', '255490000C1119', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '1020', '6.230723', '46.935681'], ['2019-73339', '2019-04-15', '000001', 'Vente', '120500', '7', '', 'RUE MONTRIEUX', '1360', '25300', '25462', 'Pontarlier', '25', '', '', '25462000AE0018', '', '', '15', '', '2', '', '', '', '', '', '', '', '2', '2', 'Appartement', '48', '2', '', '', '', '', '', '6.35805', '46.901775'], ['2019-73340', '2019-04-18', '000001', 'Vente', '258000', '36', '', 'RUE EDOUARD BASTIDE', '0060', '25290', '25434', 'Ornans', '25', '', '', '25434000AK0033', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '157', '6', 'S', 'sols', '', '', '499', '6.156522', '47.102714'], ['2019-73340', '2019-04-18', '000001', 'Vente', '258000', '32', '', 'RUE EDOUARD BASTIDE', '0060', '25290', '25434', 'Ornans', '25', '', '', '25434000AK0106', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '23', '6.156638', '47.102494'], ['2019-73340', '2019-04-18', '000001', 'Vente', '258000', '36', '', 'RUE EDOUARD BASTIDE', '0060', '25290', '25434', 'Ornans', '25', '', '', '25434000AK0107', '', '', '', '', '', '', '', '', '', '', '', '', '0', '3', 'Dépendance', '', '0', 'S', 'sols', '', '', '635', '6.156353', '47.102696'], ['2019-73341', '2019-05-13', '000001', 'Vente', '185600', '9', '', 'RUE DU MOULIN PARNET', '1420', '25300', '25462', 'Pontarlier', '25', '', '', '25462000AY0268', '', '', '48', '', '84', '91.68', '', '', '', '', '', '', '2', '2', 'Appartement', '93', '4', '', '', '', '', '', '6.352351', '46.907365'], ['2019-73341', '2019-05-13', '000001', 'Vente', '185600', '9', '', 'RUE DU MOULIN PARNET', '1420', '25300', '25462', 'Pontarlier', '25', '', '', '25462000AY0268', '', '', '65', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.352351', '46.907365'], ['2019-73342', '2019-05-09', '000001', 'Vente', '410000', '1', '', 'CHE DES CHOCHEUX', '0081', '25390', '25432', 'Orchamps-Vennes', '25', '', '', '25432000AL0042', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '280', '10', 'S', 'sols', '', '', '1000', '6.526594', '47.128519'], ['2019-73342', '2019-05-09', '000001', 'Vente', '410000', '1', '', 'CHE DES CHOCHEUX', '0081', '25390', '25432', 'Orchamps-Vennes', '25', '', '', '25432000AL0042', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '280', '10', 'T', 'terres', '', '', '1833', '6.526594', '47.128519'], ['2019-73343', '2019-05-07', '000001', 'Vente', '162800', '2', '', 'RUE DE LA MESANGE BLEUE', '0405', '25500', '25411', 'Morteau', '25', '', '', '25411000AT0410', '', '', '14', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.591392', '47.059335'], ['2019-73343', '2019-05-07', '000001', 'Vente', '162800', '2', '', 'RUE DE LA MESANGE BLEUE', '0405', '25500', '25411', 'Morteau', '25', '', '', '25411000AT0410', '', '', '26', '64.11', '4', '', '', '', '', '', '', '', '2', '2', 'Appartement', '63', '3', '', '', '', '', '', '6.591392', '47.059335'], ['2019-73344', '2019-05-06', '000001', 'Vente', '6210', '', '', 'LA BOUQUETTE', 'B014', '25690', '25343', 'Longemaison', '25', '', '', '25343000AB0112', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '621', '6.459892', '47.081056'], ['2019-73345', '2019-04-30', '000001', 'Vente terrain à bâtir', '30000', '37', '', 'RUE NEUVE', '0460', '25500', '25411', 'Morteau', '25', '', '', '25411000AC0346', '', '', '', '', '', '', '', '', '', '', '', '', '0', '4', 'Local industriel. commercial ou assimilé', '', '0', 'S', 'sols', '', '', '311', '6.601889', '47.058616'], ['2019-73346', '2019-05-13', '000001', 'Vente', '500', '', '', 'BREME COULET', 'B014', '25580', '25535', 'Saules', '25', '', '', '255350000A0013', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'BR', 'futaies résineuses', 'EPICE', 'Epicéas', '2656', '6.209225', '47.136661'], ['2019-73346', '2019-05-13', '000001', 'Vente', '500', '', '', 'BREME COULET', 'B014', '25580', '25535', 'Saules', '25', '', '', '255350000A0013', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'BT', 'taillis simples', '', '', '7969', '6.209225', '47.136661'], ['2019-73347', '2019-04-24', '000001', "Vente en l'état futur d'achèvement", '313000', '1', 'B', 'LA ROCHOTTE', 'B311', '25570', '25285', "Grand'Combe-Châteleu", '25', '', '', '25285000AB0628', '', '', '13', '', '7', '', '', '', '', '', '', '', '2', '2', 'Appartement', '92', '4', '', '', '', '', '', '6.568092', '47.027826'], ['2019-73347', '2019-04-24', '000001', "Vente en l'état futur d'achèvement", '313000', '1', 'B', 'LA ROCHOTTE', 'B311', '25570', '25285', "Grand'Combe-Châteleu", '25', '', '', '25285000AB0628', '', '', '3', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.568092', '47.027826'], ['2019-73348', '2019-04-25', '000001', 'Vente', '267940', '10', '', 'RUE DU TEMPLE', '1020', '25130', '25321', 'Villers-le-Lac', '25', '', '', '25321000AI0154', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '72', '4', 'S', 'sols', '', '', '473', '6.684258', '47.058597'], ['2019-73349', '2019-04-24', '000001', 'Vente', '5000', '8', '', 'CHE DU PRE BURTIN', '0196', '25290', '25434', 'Ornans', '25', '', '', '25434000AL0017', '', '', '', '', '', '', '', '', '', '', '', '', '0', '3', 'Dépendance', '', '0', 'S', 'sols', '', '', '39', '6.138379', '47.10122'], ['2019-73350', '2019-04-27', '000001', 'Vente', '62000', '9', '', 'RTE DE PONTARLIER', '0045', '25840', '25633', 'Vuillafans', '25', '', '', '25633000AB0136', '', '', '', '', '', '', '', '', '', '', '', '', '0', '2', 'Appartement', '38', '2', 'S', 'sols', '', '', '312', '6.217264', '47.064495'], ['2019-73350', '2019-04-27', '000001', 'Vente', '62000', '9', '', 'RTE DE PONTARLIER', '0045', '25840', '25633', 'Vuillafans', '25', '', '', '25633000AB0136', '', '', '', '', '', '', '', '', '', '', '', '', '0', '3', 'Dépendance', '', '0', 'S', 'sols', '', '', '312', '6.217264', '47.064495'], ['2019-73350', '2019-04-27', '000001', 'Vente', '62000', '9', '', 'RTE DE PONTARLIER', '0045', '25840', '25633', 'Vuillafans', '25', '', '', '25633000AB0136', '', '', '', '', '', '', '', '', '', '', '', '', '0', '2', 'Appartement', '83', '3', 'S', 'sols', '', '', '312', '6.217264', '47.064495'], ['2019-73350', '2019-04-27', '000001', 'Vente', '62000', '', '', 'AU VILLAGE', 'B154', '25840', '25633', 'Vuillafans', '25', '', '', '25633000AB0137', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'J', 'jardins', '', '', '78', '6.217289', '47.06463'], ['2019-73351', '2019-05-03', '000001', 'Vente', '145000', '29', '', 'RUE DE LA COTE', '0130', '25500', '25411', 'Morteau', '25', '', '', '25411000AB0016', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '68', '5', 'S', 'sols', '', '', '421', '6.595158', '47.055696'], ['2019-73352', '2019-05-17', '000001', 'Vente', '66000', '', '', 'MURGER PARROT', 'B085', '25390', '25349', 'Loray', '25', '', '', '25349000AC0107', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'AB', 'terrains a bâtir', '', '', '839', '6.492196', '47.149638'], ['2019-73353', '2019-05-07', '000001', 'Vente', '42075', '', '', 'AU VILLAGE', 'B060', '25660', '25375', 'Mérey-sous-Montrond', '25', '', '', '25375000AB0040', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '935', '6.068709', '47.153071'], ['2019-73354', '2019-05-23', '000001', 'Vente', '10000', '10', '', 'AV GAL PIERRE MARIE BURNEZ', '0120', '25800', '25578', 'Valdahon', '25', '', '', '25578000AD0221', '', '', '203', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.340354', '47.150847'], ['2019-73355', '2019-05-06', '000001', 'Vente', '273300', '2', '', 'RUE DES COURLIS', '0005', '25300', '25309', 'Houtaud', '25', '', '', '25309000AD0164', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '105', '5', 'AB', 'terrains a bâtir', '', '', '732', '6.311006', '46.914808'], ['2019-73356', '2019-05-03', '000001', 'Vente', '160000', '24', '', 'RUE ANTOINE PATEL', '0050', '25300', '25462', 'Pontarlier', '25', '', '', '25462000AZ0017', '', '', '9', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.346816', '46.911058'], ['2019-73356', '2019-05-03', '000001', 'Vente', '160000', '24', '', 'RUE ANTOINE PATEL', '0050', '25300', '25462', 'Pontarlier', '25', '', '', '25462000AZ0017', '', '', '2', '63.05', '4', '', '', '', '', '', '', '', '2', '2', 'Appartement', '63', '3', '', '', '', '', '', '6.346816', '46.911058'], ['2019-73356', '2019-05-03', '000001', 'Vente', '160000', '24', '', 'RUE ANTOINE PATEL', '0050', '25300', '25462', 'Pontarlier', '25', '', '', '25462000AZ0017', '', '', '7', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.346816', '46.911058'], ['2019-73357', '2019-05-03', '000001', 'Vente', '117700', '4', '', 'RUE DE LA SEIGNETTE', '0041', '25160', '25361', 'Malbuisson', '25', '', '', '25361000AE0256', '', '', '', '', '', '', '', '', '', '', '', '', '0', '2', 'Appartement', '70', '3', 'S', 'sols', '', '', '222', '6.312853', '46.803962'], ['2019-73357', '2019-05-03', '000001', 'Vente', '117700', '4', '', 'RUE DE LA SEIGNETTE', '0041', '25160', '25361', 'Malbuisson', '25', '', '', '25361000AE0256', '', '', '', '', '', '', '', '', '', '', '', '', '0', '2', 'Appartement', '130', '5', 'S', 'sols', '', '', '222', '6.312853', '46.803962'], ['2019-73358', '2019-05-27', '000001', 'Vente', '4500', '', '', 'EN BARABAN', 'B006', '25290', '25434', 'Ornans', '25', '', '', '254340000G0388', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'BT', 'taillis simples', '', '', '8621', '6.135321', '47.086229'], ['2019-73358', '2019-05-27', '000001', 'Vente', '4500', '', '', 'LES PRES DU CHANET', 'B244', '25290', '25434', 'Ornans', '25', '', '', '254340000H0145', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'BR', 'futaies résineuses', 'EPICE', 'Epicéas', '1000', '6.121926', '47.099235'], ['2019-73358', '2019-05-27', '000001', 'Vente', '4500', '', '', 'LES PRES DU CHANET', 'B244', '25290', '25434', 'Ornans', '25', '', '', '254340000H0146', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'BR', 'futaies résineuses', 'EPICE', 'Epicéas', '5083', '6.122161', '47.099539'], ['2019-73358', '2019-05-27', '000001', 'Vente', '4500', '', '', 'LES PRES DU CHANET', 'B244', '25290', '25434', 'Ornans', '25', '', '', '254340000H0153', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'BR', 'futaies résineuses', 'EPICE', 'Epicéas', '9890', '6.122277', '47.10117'], ['2019-73358', '2019-05-27', '000001', 'Vente', '4500', '', '', 'LES PRES DU CHANET', 'B244', '25290', '25434', 'Ornans', '25', '', '', '254340000H0154', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'BR', 'futaies résineuses', 'EPICE', 'Epicéas', '2873', '6.122075', '47.100135'], ['2019-73358', '2019-05-27', '000001', 'Vente', '4500', '', '', 'LES PRES DU CHANET', 'B244', '25290', '25434', 'Ornans', '25', '', '', '254340000H0155', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'BT', 'taillis simples', '', '', '16957', '6.121297', '47.100456'], ['2019-73359', '2019-05-24', '000001', 'Vente', '267000', '', '', 'AU VILLAGE', 'B093', '25240', '25131', 'Châtelblanc', '25', '', '', '25131000AB0115', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '728', '6.110888', '46.672388'], ['2019-73359', '2019-05-24', '000001', 'Vente', '267000', '6', '', 'CHE DES ESSARTS', '0012', '25240', '25131', 'Châtelblanc', '25', '', '', '25131000AB0116', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '157', '7', 'S', 'sols', '', '', '490', '6.110957', '46.672352'], ['2019-73360', '2019-05-23', '000001', 'Vente', '58000', '26', 'C', 'RUE EMILE MAGNIN', '0700', '25300', '25462', 'Pontarlier', '25', '', '', '25462000AW0023', '', '', '94', '24.58', '', '', '', '', '', '', '', '', '1', '2', 'Appartement', '28', '1', '', '', '', '', '', '6.344517', '46.905882'], ['2019-73361', '2019-05-27', '000001', 'Vente', '215800', '1', '', 'RUE DES GELINOTTES', '0448', '25130', '25321', 'Villers-le-Lac', '25', '', '', '25321000BC0049', '', '', '10', '93.4', '2', '', '', '', '', '', '', '', '2', '2', 'Appartement', '90', '4', '', '', '', '', '', '6.666038', '47.066147'], ['2019-73361', '2019-05-27', '000001', 'Vente', '215800', '1', '', 'RUE DES GELINOTTES', '0448', '25130', '25321', 'Villers-le-Lac', '25', '', '', '25321000BC0049', '', '', '6', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.666038', '47.066147'], ['2019-73362', '2019-05-27', '000001', 'Vente', '109000', '10', '', 'RUE SAINT EXUPERY', '0296', '25800', '25578', 'Valdahon', '25', '', '', '25578000AI0094', '', '', '11', '', '13', '64.97', '', '', '', '', '', '', '2', '2', 'Appartement', '65', '3', '', '', '', '', '', '6.352312', '47.148341'], ['2019-73362', '2019-05-27', '000001', 'Vente', '109000', '10', '', 'RUE SAINT EXUPERY', '0296', '25800', '25578', 'Valdahon', '25', '', '', '25578000AI0094', '', '', '3', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.352312', '47.148341'], ['2019-73363', '2019-05-27', '000001', 'Vente', '111000', '5', '', 'PL MAXIME CUPILLARD', '0646', '25130', '25321', 'Villers-le-Lac', '25', '', '', '25321000AB0090', '', '', '1', '', '26', '101.87', '27', '', '29', '', '44', '', '6', '2', 'Appartement', '102', '6', '', '', '', '', '', '6.670405', '47.059013'], ['2019-73364', '2019-05-23', '000001', 'Vente', '120000', '16', '', 'RUE DU CLOS JEUNE', '0113', '25500', '25411', 'Morteau', '25', '', '', '25411000AE0084', '', '', '137', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.608283', '47.056929'], ['2019-73364', '2019-05-23', '000001', 'Vente', '120000', '16', '', 'RUE DU CLOS JEUNE', '0113', '25500', '25411', 'Morteau', '25', '', '', '25411000AE0084', '', '', '63', '', '82', '50.51', '', '', '', '', '', '', '2', '2', 'Appartement', '51', '2', '', '', '', '', '', '6.608283', '47.056929'], ['2019-73365', '2019-05-23', '000001', 'Vente', '183900', '9010', '', 'RUE VICTOR HUGO', '1970', '25300', '25462', 'Pontarlier', '25', '', '', '25462000AY0218', '', '', '', '', '', '', '', '', '', '', '', '', '0', '3', 'Dépendance', '', '0', 'S', 'sols', '', '', '17', '6.348107', '46.909909'], ['2019-73365', '2019-05-23', '000001', 'Vente', '183900', '2', '', 'RUE DE LA MALADIERE', '1220', '25300', '25462', 'Pontarlier', '25', '', '', '25462000AY0219', '', '', '20', '90.4', '22', '', '23', '', '', '', '', '', '3', '2', 'Appartement', '90', '4', '', '', '', '', '', '6.348077', '46.909833'], ['2019-73366', '2019-05-25', '000001', 'Vente', '162500', '5', '', 'RUE PASTEUR', '0740', '25130', '25321', 'Villers-le-Lac', '25', '', '', '25321000AC0430', '', '', '6', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.667307', '47.058653'], ['2019-73366', '2019-05-25', '000001', 'Vente', '162500', '5', '', 'RUE PASTEUR', '0740', '25130', '25321', 'Villers-le-Lac', '25', '', '', '25321000AC0430', '', '', '23', '', '37', '73.4', '', '', '', '', '', '', '2', '2', 'Appartement', '73', '3', '', '', '', '', '', '6.667307', '47.058653'], ['2019-73367', '2019-05-20', '000001', 'Vente', '155000', '3', '', 'IMP DE LA BISE', '0012', '25290', '25434', 'Ornans', '25', '', '', '25434000AL0064', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '110', '5', 'S', 'sols', '', '', '697', '6.141537', '47.100737'], ['2019-73368', '2019-06-06', '000001', 'Vente', '140000', '12', '', 'RUE DES OISEAUX', '0465', '25500', '25411', 'Morteau', '25', '', '', '25411000AC0187', '', '', '', '', '', '', '', '', '', '', '', '', '0', '2', 'Appartement', '48', '2', 'S', 'sols', '', '', '292', '6.599985', '47.058795'], ['2019-73368', '2019-06-06', '000001', 'Vente', '140000', '12', '', 'RUE DES OISEAUX', '0465', '25500', '25411', 'Morteau', '25', '', '', '25411000AC0187', '', '', '', '', '', '', '', '', '', '', '', '', '0', '3', 'Dépendance', '', '0', 'S', 'sols', '', '', '292', '6.599985', '47.058795'], ['2019-73368', '2019-06-06', '000001', 'Vente', '140000', '12', '', 'RUE DES OISEAUX', '0465', '25500', '25411', 'Morteau', '25', '', '', '25411000AC0187', '', '', '', '', '', '', '', '', '', '', '', '', '0', '3', 'Dépendance', '', '0', 'S', 'sols', '', '', '292', '6.599985', '47.058795'], ['2019-73368', '2019-06-06', '000001', 'Vente', '140000', '12', '', 'RUE DES OISEAUX', '0465', '25500', '25411', 'Morteau', '25', '', '', '25411000AC0187', '', '', '', '', '', '', '', '', '', '', '', '', '0', '2', 'Appartement', '48', '2', 'S', 'sols', '', '', '292', '6.599985', '47.058795'], ['2019-73369', '2019-06-07', '000001', 'Vente', '276000', '2', '', 'RUE DE LA MESANGE BLEUE', '0405', '25500', '25411', 'Morteau', '25', '', '', '25411000AT0410', '', '', '38', '101.79', '39', '', '', '', '', '', '', '', '2', '2', 'Appartement', '102', '4', '', '', '', '', '', '6.591392', '47.059335'], ['2019-73369', '2019-06-07', '000001', 'Vente', '276000', '2', '', 'RUE DE LA MESANGE BLEUE', '0405', '25500', '25411', 'Morteau', '25', '', '', '25411000AT0410', '', '', '23', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.591392', '47.059335'], ['2019-73370', '2019-06-03', '000001', 'Vente', '1000', '', '', 'CHAMP DE L EPINE', 'B107', '25160', '25405', 'Montperreux', '25', '', '', '25405000AI0056', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '8050', '6.335536', '46.825222'], ['2019-73371', '2019-06-07', '000001', 'Vente', '311200', '2', '', 'LA ROCHETTE', 'A079', '25650', '25139', 'La Chaux', '25', '', '', '25139000ZE0111', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '148', '4', 'S', 'sols', '', '', '500', '6.424969', '47.02072'], ['2019-73371', '2019-06-07', '000001', 'Vente', '311200', '2', '', 'LA ROCHETTE', 'A079', '25650', '25139', 'La Chaux', '25', '', '', '25139000ZE0111', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '148', '4', 'P', 'prés', '', '', '441', '6.424969', '47.02072'], ['2019-73372', '2019-06-14', '000001', 'Vente', '259040', '3', '', 'RUE DU CHATEAU', '0016', '25300', '25110', 'Chaffois', '25', '', '', '25110000AC0172', '', '', '4', '81', '8', '', '', '', '', '', '', '', '2', '2', 'Appartement', '85', '3', '', '', '', '', '', '6.269127', '46.913632'], ['2019-73372', '2019-06-14', '000001', 'Vente', '259040', '3', '', 'RUE DU CHATEAU', '0016', '25300', '25110', 'Chaffois', '25', '', '', '25110000AC0172', '', '', '9', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.269127', '46.913632'], ['2019-73373', '2019-06-11', '000001', 'Vente', '3400', '', '', 'LES RAVIERES', 'B074', '25240', '25131', 'Châtelblanc', '25', '', '', '251310000C0099', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'BR', 'futaies résineuses', '', '', '3970', '6.12323', '46.668816'], ['2019-73374', '2019-05-25', '000001', 'Vente', '190600', '8', '', 'RUE DU DOUBS', '0021', '25500', '25403', 'Montlebon', '25', '', '', '25403000AB0352', '', '', '86', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.606049', '47.04502'], ['2019-73374', '2019-05-25', '000001', 'Vente', '190600', '8', '', 'RUE DU DOUBS', '0021', '25500', '25403', 'Montlebon', '25', '', '', '25403000AB0352', '', '', '22', '', '69', '59.27', '', '', '', '', '', '', '2', '2', 'Appartement', '62', '3', '', '', '', '', '', '6.606049', '47.04502'], ['2019-73374', '2019-05-25', '000001', 'Vente', '190600', '8', '', 'RUE DU DOUBS', '0021', '25500', '25403', 'Montlebon', '25', '', '', '25403000AB0352', '', '', '34', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.606049', '47.04502'], ['2019-73375', '2019-06-06', '000001', 'Vente', '29000', '', '', 'ES QUEMEN', 'B066', '25530', '25325', 'Landresse', '25', '', '', '25325000ZS0077', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'BT', 'taillis simples', '', '', '675', '6.505459', '47.247515'], ['2019-73375', '2019-06-06', '000001', 'Vente', '29000', '', '', 'ES QUEMEN', 'B066', '25530', '25325', 'Landresse', '25', '', '', '25325000ZS0077', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '1880', '6.505459', '47.247515'], ['2019-73375', '2019-06-06', '000001', 'Vente', '29000', '', '', 'ES QUEMEN', 'B066', '25530', '25325', 'Landresse', '25', '', '', '25325000ZS0077', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '17180', '6.505459', '47.247515'], ['2019-73375', '2019-06-06', '000001', 'Vente', '29000', '', '', 'ES QUEMEN', 'B066', '25530', '25325', 'Landresse', '25', '', '', '25325000ZS0077', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'BT', 'taillis simples', '', '', '400', '6.505459', '47.247515'], ['2019-73375', '2019-06-06', '000001', 'Vente', '29000', '', '', 'ES QUEMEN', 'B066', '25530', '25325', 'Landresse', '25', '', '', '25325000ZS0077', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'T', 'terres', '', '', '2640', '6.505459', '47.247515'], ['2019-73375', '2019-06-06', '000001', 'Vente', '29000', '', '', 'ES QUEMEN', 'B066', '25530', '25325', 'Landresse', '25', '', '', '25325000ZS0077', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '1320', '6.505459', '47.247515'], ['2019-73375', '2019-06-06', '000001', 'Vente', '29000', '', '', 'ES QUEMEN', 'B066', '25530', '25325', 'Landresse', '25', '', '', '25325000ZS0077', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '5400', '6.505459', '47.247515'], ['2019-73375', '2019-06-06', '000001', 'Vente', '29000', '', '', 'ES QUEMEN', 'B066', '25530', '25325', 'Landresse', '25', '', '', '25325000ZS0077', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'BT', 'taillis simples', '', '', '23720', '6.505459', '47.247515'], ['2019-73375', '2019-06-06', '000001', 'Vente', '29000', '', '', 'ES QUEMEN', 'B066', '25530', '25325', 'Landresse', '25', '', '', '25325000ZS0077', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '4160', '6.505459', '47.247515'], ['2019-73375', '2019-06-06', '000001', 'Vente', '29000', '', '', 'ES QUEMEN', 'B066', '25530', '25325', 'Landresse', '25', '', '', '25325000ZS0077', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'BT', 'taillis simples', '', '', '3400', '6.505459', '47.247515'], ['2019-73375', '2019-06-06', '000001', 'Vente', '29000', '', '', 'DERRIERE LES TEUREY', 'B042', '25510', '25625', 'Villers-la-Combe', '25', '', '', '25625000AE0044', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '11965', '6.502807', '47.244859'], ['2019-73375', '2019-06-06', '000001', 'Vente', '29000', '', '', 'DERRIERE LES TEUREY', 'B042', '25510', '25625', 'Villers-la-Combe', '25', '', '', '25625000AE0045', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'T', 'terres', '', '', '10395', '6.504113', '47.244614'], ['2019-73375', '2019-06-06', '000001', 'Vente', '29000', '', '', 'DERRIERE LES TEUREY', 'B042', '25510', '25625', 'Villers-la-Combe', '25', '', '', '25625000AE0046', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'BT', 'taillis simples', '', '', '1505', '6.504528', '47.244347'], ['2019-73376', '2019-05-13', '000001', 'Vente', '165000', '11', '', 'RUE DE LA GARE', '0050', '25690', '25039', 'Avoudrey', '25', '', '', '25039000AC0146', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '270', '7', 'S', 'sols', '', '', '1277', '6.435121', '47.13306'], ['2019-73377', '2019-06-07', '000001', 'Vente', '24871.02', '', '', 'CLOS OUDOT', 'B033', '25530', '25325', 'Landresse', '25', '', '', '25325000ZL0191', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'AB', 'terrains a bâtir', '', '', '995', '6.468214', '47.25478'], ['2019-73378', '2019-06-14', '000001', 'Vente', '195000', '42', '', 'RUE DE LA COTE', '0130', '25500', '25411', 'Morteau', '25', '', '', '25411000AB0049', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '92', '5', 'S', 'sols', '', '', '264', '6.595619', '47.055712'], ['2019-73379', '2019-06-18', '000001', 'Vente', '52500', '22', '', 'RUE DU FAUBOURG', '0013', '25370', '25318', 'Jougne', '25', '', '', '25318000AB0066', '', '', '6', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.384612', '46.766454'], ['2019-73379', '2019-06-18', '000001', 'Vente', '52500', '22', '', 'RUE DU FAUBOURG', '0013', '25370', '25318', 'Jougne', '25', '', '', '25318000AB0066', '', '', '11', '24.47', '', '', '', '', '', '', '', '', '1', '2', 'Appartement', '24', '2', '', '', '', '', '', '6.384612', '46.766454'], ['2019-73380', '2019-06-20', '000001', 'Vente', '100000', '18', '', 'RUE DU STAND', '1830', '25300', '25462', 'Pontarlier', '25', '', '', '25462000AR0007', '', '', '85', '71.65', '93', '', '', '', '', '', '', '', '2', '2', 'Appartement', '69', '4', '', '', '', '', '', '6.352094', '46.89998'], ['2019-73381', '2019-06-13', '000001', 'Vente', '303500', '15', 'B', 'RUE DE LA SYLVE', '0049', '25300', '25204', 'Doubs', '25', '', '', '25204000AD0100', '', '', '1', '', '', '', '', '', '', '', '', '', '1', '1', 'Maison', '112', '8', '', '', '', '', '', '6.35291', '46.918636'], ['2019-73382', '2019-06-11', '000001', 'Vente', '76600', '11', '', 'RUE HENRI GRAND', '0024', '25160', '25361', 'Malbuisson', '25', '', '', '25361000AC0554', '', '', '28', '', '5', '', '', '', '', '', '', '', '2', '2', 'Appartement', '31', '1', '', '', '', '', '', '6.298271', '46.792482'], ['2019-73383', '2019-06-12', '000001', 'Vente', '4000', '', '', 'AU VILLAGE', 'B063', '25650', '25398', 'Montflovin', '25', '', '', '253980000B0327', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '2671', '6.443157', '46.986064'], ['2019-73383', '2019-06-12', '000001', 'Vente', '4000', '', '', 'AU VILLAGE', 'B063', '25650', '25398', 'Montflovin', '25', '', '', '253980000B0327', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '500', '6.443157', '46.986064'], ['2019-73383', '2019-06-12', '000001', 'Vente', '4000', '', '', 'AU VILLAGE', 'B063', '25650', '25398', 'Montflovin', '25', '', '', '253980000B0327', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '2671', '6.443157', '46.986064'], ['2019-73383', '2019-06-12', '000001', 'Vente', '4000', '', '', 'AU VILLAGE', 'B063', '25650', '25398', 'Montflovin', '25', '', '', '253980000B0327', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '2671', '6.443157', '46.986064'], ['2019-73384', '2019-05-31', '000001', 'Vente', '7000', '', '', 'AU MOURET', 'B193', '25270', '25334', 'Levier', '25', '', '', '25334319ZH0023', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'BR', 'futaies résineuses', 'EPICE', 'Epicéas', '1520', '6.09024', '46.971784'], ['2019-73384', '2019-05-31', '000001', 'Vente', '7000', '', '', 'AU MOURET', 'B193', '25270', '25334', 'Levier', '25', '', '', '25334319ZH0023', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'BR', 'futaies résineuses', 'EPICE', 'Epicéas', '3480', '6.09024', '46.971784'], ['2019-73385', '2019-05-31', '000001', 'Vente', '74032', '', '', 'PRE DE LA VERDE', 'B060', '25160', '25459', 'La Planée', '25', '', '', '254590000D0001', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'BR', 'futaies résineuses', '', '', '4880', '6.28194', '46.852952'], ['2019-73385', '2019-05-31', '000001', 'Vente', '74032', '', '', 'A LA CORNE DE LA COTE', 'B037', '25160', '25459', 'La Planée', '25', '', '', '254590000D0036', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'BR', 'futaies résineuses', '', '', '4617', '6.298898', '46.853646'], ['2019-73385', '2019-05-31', '000001', 'Vente', '74032', '', '', 'A LA CORNE DE LA COTE', 'B037', '25160', '25459', 'La Planée', '25', '', '', '254590000D0037', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'BR', 'futaies résineuses', '', '', '5023', '6.299404', '46.853632'], ['2019-73385', '2019-05-31', '000001', 'Vente', '74032', '', '', 'AUX GRANDS PRES', 'B044', '25160', '25459', 'La Planée', '25', '', '', '254590000D0042', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'BR', 'futaies résineuses', '', '', '85381', '6.295019', '46.854275'], ['2019-73386', '2019-06-01', '000001', 'Vente', '130000', '7', '', 'RUE DES LAVAUX', '1140', '25300', '25462', 'Pontarlier', '25', '', '', '25462000AL0012', '', '', '19', '89.24', '', '', '', '', '', '', '', '', '1', '2', 'Appartement', '100', '4', '', '', '', '', '', '6.359269', '46.905956'], ['2019-73387', '2019-06-03', '000001', 'Vente', '182000', '28', '', 'GR GRANDE RUE', '0023', '25300', '25515', 'Sainte-Colombe', '25', '', '', '25515000ZC0094', '', '', '11', '', '2', '', '', '', '', '', '', '', '2', '2', 'Appartement', '86', '3', '', '', '', '', '', '6.263891', '46.877454'], ['2019-73387', '2019-06-03', '000001', 'Vente', '182000', '28', '', 'GR GRANDE RUE', '0023', '25300', '25515', 'Sainte-Colombe', '25', '', '', '25515000ZC0094', '', '', '8', '13.2', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.263891', '46.877454'], ['2019-73388', '2019-06-14', '000001', 'Vente', '409000', '', '', 'RUE DES COTES', '0300', '25130', '25321', 'Villers-le-Lac', '25', '', '', '25321000AB0292', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '150', '6', 'S', 'sols', '', '', '1254', '6.661945', '47.057962'], ['2019-73389', '2019-06-01', '000001', 'Vente', '219000', '7', '', 'RUE DE LA MONTAGNE', '0038', '25300', '25201', 'Dommartin', '25', '', '', '25201000AC0009', '', '', '6', '', '', '', '', '', '', '', '', '', '1', '2', 'Appartement', '70', '3', '', '', '', '', '', '6.305465', '46.924575'], ['2019-73389', '2019-06-01', '000001', 'Vente', '219000', '7', '', 'RUE DE LA MONTAGNE', '0038', '25300', '25201', 'Dommartin', '25', '', '', '25201000AC0009', '', '', '28', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.305465', '46.924575'], ['2019-73390', '2019-06-14', '000001', 'Vente', '296000', '20', '', 'RUE DES PESETTES', '0037', '25300', '25293', 'Granges-Narboz', '25', '', '', '25293000AE0059', '', '', '', '', '', '', '', '', '', '', '', '', '0', '3', 'Dépendance', '', '0', 'S', 'sols', '', '', '654', '6.317121', '46.881117'], ['2019-73390', '2019-06-14', '000001', 'Vente', '296000', '20', '', 'RUE DES PESETTES', '0037', '25300', '25293', 'Granges-Narboz', '25', '', '', '25293000AE0059', '', '', '', '', '', '', '', '', '', '', '', '', '0', '2', 'Appartement', '45', '1', 'S', 'sols', '', '', '654', '6.317121', '46.881117'], ['2019-73390', '2019-06-14', '000001', 'Vente', '296000', '20', '', 'RUE DES PESETTES', '0037', '25300', '25293', 'Granges-Narboz', '25', '', '', '25293000AE0059', '', '', '', '', '', '', '', '', '', '', '', '', '0', '3', 'Dépendance', '', '0', 'S', 'sols', '', '', '654', '6.317121', '46.881117'], ['2019-73390', '2019-06-14', '000001', 'Vente', '296000', '20', '', 'RUE DES PESETTES', '0037', '25300', '25293', 'Granges-Narboz', '25', '', '', '25293000AE0059', '', '', '', '', '', '', '', '', '', '', '', '', '0', '2', 'Appartement', '103', '5', 'S', 'sols', '', '', '654', '6.317121', '46.881117'], ['2019-73391', '2019-06-14', '000001', 'Vente', '157010', '4', '', 'AV DES GRANDS CHAMPS', '0110', '25370', '25380', 'Métabief', '25', '', '', '25380000AB0236', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '36', '2', 'S', 'sols', '', '', '301', '6.340861', '46.767161'], ['2019-73391', '2019-06-14', '000001', 'Vente', '157010', '', '', 'VISCERNOIS', 'B018', '25370', '25380', 'Métabief', '25', '', '', '25380000AB0250', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '30', '6.340836', '46.76754'], ['2019-73392', '2019-06-05', '000001', 'Vente', '1000', '', '', 'A LA BAUME', 'B007', '25560', '25202', 'Dompierre-les-Tilleuls', '25', '', '', '252020000A0245', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'BR', 'futaies résineuses', '', '', '4180', '6.160498', '46.899215'], ['2019-73393', '2019-06-18', '000001', 'Vente', '207720', '28', '', 'RUE DE LA COTE', '0020', '25370', '25318', 'Jougne', '25', '', '', '25318000AC0454', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '55', '3', 'S', 'sols', '', '', '582', '6.386129', '46.760382'], ['2019-73394', '2019-06-04', '000001', 'Vente', '4511.52', '', '', 'PRE SENAUBEAU', 'B078', '25160', '25295', 'Les Grangettes', '25', '', '', '252950000B0051', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '3250', '6.304481', '46.823169'], ['2019-73394', '2019-06-04', '000001', 'Vente', '4511.52', '', '', 'PRE SENAUBEAU', 'B078', '25160', '25295', 'Les Grangettes', '25', '', '', '252950000B0053', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '2420', '6.3049', '46.822962'], ['2019-73394', '2019-06-04', '000001', 'Vente', '4511.52', '', '', 'PRE SENAUBEAU', 'B078', '25160', '25295', 'Les Grangettes', '25', '', '', '252950000B0054', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '3950', '6.305401', '46.82346'], ['2019-73394', '2019-06-04', '000001', 'Vente', '4511.52', '', '', 'LE CREPON', 'B046', '25160', '25295', 'Les Grangettes', '25', '', '', '252950000B0518', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'T', 'terres', '', '', '6600', '6.304782', '46.82442'], ['2019-73394', '2019-06-04', '000001', 'Vente', '4511.52', '', '', 'CHAMP DU POMMIER', 'B004', '25160', '25525', 'Saint-Point-Lac', '25', '', '', '255250000A0099', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'T', 'terres', '', '', '5120', '6.309621', '46.818326'], ['2019-73394', '2019-06-04', '000001', 'Vente', '4511.52', '', '', 'LES COTTES', 'B021', '25160', '25525', 'Saint-Point-Lac', '25', '', '', '255250000A0110', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'T', 'terres', '', '', '280', '6.312509', '46.819505'], ['2019-73394', '2019-06-04', '000001', 'Vente', '4511.52', '', '', 'LES REVERS', 'B055', '25160', '25525', 'Saint-Point-Lac', '25', '', '', '255250000A0258', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '188', '6.300424', '46.814217'], ['2019-73394', '2019-06-04', '000001', 'Vente', '4511.52', '', '', 'QUARTIER DE L EGLISE', 'B050', '25160', '25525', 'Saint-Point-Lac', '25', '', '', '255250000B0034', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'BR', 'futaies résineuses', '', '', '1045', '6.300609', '46.814562'], ['2019-73395', '2019-06-18', '000001', 'Vente', '9000', '31', '', 'RUE DYONIS ORDINAIRE', '0640', '25300', '25462', 'Pontarlier', '25', '', '', '25462000AM0100', '', '', '186', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.362325', '46.899368'], ['2019-73396', '2019-06-18', '000001', 'Vente', '167700', '28', '', 'RUE DE JOUX', '1080', '25300', '25462', 'Pontarlier', '25', '', '', '25462000AM0100', '', '', '11', '', '6', '71.27', '', '', '', '', '', '', '2', '2', 'Appartement', '71', '4', '', '', '', '', '', '6.362325', '46.899368'], ['2019-73397', '2019-06-25', '000001', 'Vente', '23000', '', '', 'AUX ETROITS', 'B069', '25930', '25339', 'Lods', '25', '', '', '253390000A0003', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'BR', 'futaies résineuses', 'EPICE', 'Epicéas', '1000', '6.28752', '47.066124'], ['2019-73397', '2019-06-25', '000001', 'Vente', '23000', '', '', 'LES EMARINS', 'B067', '25930', '25339', 'Lods', '25', '', '', '253390000A0018', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'BR', 'futaies résineuses', 'EPICE', 'Epicéas', '1605', '6.287618', '47.065949'], ['2019-73397', '2019-06-25', '000001', 'Vente', '23000', '', '', 'BAS DE LODS', 'B179', '25580', '25424', 'Les Premiers Sapins', '25', '', '', '254240280B0008', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'BT', 'taillis simples', '', '', '1250', '6.288498', '47.065764'], ['2019-73397', '2019-06-25', '000001', 'Vente', '23000', '', '', 'BAS DE LODS', 'B179', '25580', '25424', 'Les Premiers Sapins', '25', '', '', '254240280B0009', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '1940', '6.288464', '47.065912'], ['2019-73397', '2019-06-25', '000001', 'Vente', '23000', '', '', 'BAS DE LODS', 'B179', '25580', '25424', 'Les Premiers Sapins', '25', '', '', '254240280B0010', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'L', 'landes', 'FRICH', 'Friche', '705', '6.288242', '47.066275'], ['2019-73397', '2019-06-25', '000001', 'Vente', '23000', '', '', 'BAS DE LODS', 'B179', '25580', '25424', 'Les Premiers Sapins', '25', '', '', '254240280B0017', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '6930', '6.292762', '47.067463'], ['2019-73397', '2019-06-25', '000001', 'Vente', '23000', '', '', 'BAS DE LODS', 'B179', '25580', '25424', 'Les Premiers Sapins', '25', '', '', '254240280B0018', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '1050', '6.294802', '47.067391'], ['2019-73398', '2019-06-26', '000001', 'Vente', '20000', '5', '', 'RUE DES TRONCHOTS', '0340', '25800', '25578', 'Valdahon', '25', '', '', '25578000AA0153', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '51', '4', 'S', 'sols', '', '', '389', '6.334962', '47.152597'], ['2019-73398', '2019-06-26', '000001', 'Vente', '20000', '5', '', 'RUE DES TRONCHOTS', '0340', '25800', '25578', 'Valdahon', '25', '', '', '25578000AA0154', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '23', '6.334888', '47.15252'], ['2019-73399', '2019-06-28', '000001', 'Vente', '143800', '22', '', 'RUE PRINCIPALE', '0015', '25530', '25007', 'Adam-lès-Vercel', '25', '', '', '250070000C0057', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '145', '4', 'S', 'sols', '', '', '207', '6.392467', '47.168587'], ['2019-73400', '2019-06-04', '000001', 'Vente', '124500', '12', '', 'RUE GRANDE RUE', '0282', '25270', '25122', "Chapelle-d'Huin", '25', '', '', '251220000F0061', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '129', '4', 'S', 'sols', '', '', '615', '6.168904', '46.933765'], ['2019-73400', '2019-06-04', '000001', 'Vente', '124500', '', '', 'AU VILLAGE', 'B244', '25270', '25122', "Chapelle-d'Huin", '25', '', '', '251220000F0067', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'T', 'terres', '', '', '312', '6.168204', '46.934467'], ['2019-73400', '2019-06-04', '000001', 'Vente', '124500', '', '', 'AU VILLAGE', 'B244', '25270', '25122', "Chapelle-d'Huin", '25', '', '', '251220000F0067', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'T', 'terres', '', '', '313', '6.168204', '46.934467'], ['2019-73400', '2019-06-04', '000001', 'Vente', '124500', '', '', 'AU VILLAGE', 'B244', '25270', '25122', "Chapelle-d'Huin", '25', '', '', '251220000F0068', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '95', '6.168807', '46.934179'], ['2019-73400', '2019-06-04', '000001', 'Vente', '124500', '', '', 'AU VILLAGE', 'B244', '25270', '25122', "Chapelle-d'Huin", '25', '', '', '251220000F0068', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'J', 'jardins', '', '', '390', '6.168807', '46.934179'], ['2019-73400', '2019-06-04', '000001', 'Vente', '124500', '', '', 'AU VILLAGE', 'B244', '25270', '25122', "Chapelle-d'Huin", '25', '', '', '251220000F0294', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'T', 'terres', '', '', '106', '6.168821', '46.934108'], ['2019-73401', '2019-06-05', '000001', 'Vente', '272000', '98', '', 'RUE DES LAVAUX', '1140', '25300', '25462', 'Pontarlier', '25', '', '', '25462000AK0024', '', '', '204', '98', '205', '98', '', '', '', '', '', '', '2', '2', 'Appartement', '95', '5', '', '', '', '', '', '6.372267', '46.906055'], ['2019-73401', '2019-06-05', '000001', 'Vente', '272000', '98', '', 'RUE DES LAVAUX', '1140', '25300', '25462', 'Pontarlier', '25', '', '', '25462000AK0024', '', '', '219', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.372267', '46.906055'], ['2019-73402', '2019-06-07', '000001', 'Vente', '55000', '11', '', 'RUE DU LAC', '0175', '25560', '25075', 'Bonnevaux', '25', '', '', '25075000ZH0038', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '124', '4', 'S', 'sols', '', '', '610', '6.184904', '46.809534'], ['2019-73402', '2019-06-07', '000001', 'Vente', '55000', '', '', 'AU VILLAGE', 'B139', '25560', '25075', 'Bonnevaux', '25', '', '', '25075000ZH0040', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '30', '6.185239', '46.8096'], ['2019-73402', '2019-06-07', '000001', 'Vente', '55000', '', '', 'AU VILLAGE', 'B139', '25560', '25075', 'Bonnevaux', '25', '', '', '25075000ZH0294', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '28', '6.18511', '46.809455'], ['2019-73403', '2019-06-05', '000001', 'Vente', '20000', '', '', 'TASSENIERE', 'B091', '25560', '25202', 'Dompierre-les-Tilleuls', '25', '', '', '252020000B0216', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'BR', 'futaies résineuses', '', '', '20960', '6.173556', '46.887252'], ['2019-73404', '2019-06-24', '000001', 'Vente', '320000', '2', '', 'RUE DU CHAMP NEUF', '0026', '25300', '25024', 'Arçon', '25', '', '', '25024000AB0093', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '167', '5', 'S', 'sols', '', '', '800', '6.379998', '46.951359'], ['2019-73405', '2019-06-18', '000001', 'Vente', '4500', '', '', 'AU MOUTHRIOT', 'B104', '25560', '25493', 'La Rivière-Drugeon', '25', '', '', '254930000C0736', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'BR', 'futaies résineuses', '', '', '8560', '6.247441', '46.866128'], ['2019-73406', '2019-06-28', '000001', 'Vente', '160000', '22', '', 'GR GRANDE RUE', '0026', '25240', '25413', 'Mouthe', '25', '', '', '25413000AC0197', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '633', '6.191296', '46.709845'], ['2019-73406', '2019-06-28', '000001', 'Vente', '160000', '22', '', 'GR GRANDE RUE', '0026', '25240', '25413', 'Mouthe', '25', '', '', '25413000AC0198', '', '', '2', '', '3', '0.8', '4', '', '5', '52.07', '6', '4.92', '6', '2', 'Appartement', '138', '4', '', '', '', '', '', '6.191429', '46.709644'], ['2019-73406', '2019-06-28', '000001', 'Vente', '160000', '22', '', 'GR GRANDE RUE', '0026', '25240', '25413', 'Mouthe', '25', '', '', '25413000AC0198', '', '', '7', '41.76', '', '', '', '', '', '', '', '', '1', '2', 'Appartement', '40', '1', '', '', '', '', '', '6.191429', '46.709644'], ['2019-73406', '2019-06-28', '000001', 'Vente', '160000', '22', '', 'GR GRANDE RUE', '0026', '25240', '25413', 'Mouthe', '25', '', '', '25413000AC0198', '', '', '10', '58.62', '11', '58.62', '12', '58.62', '13', '44.03', '9', '57.89', '5', '2', 'Appartement', '63', '3', '', '', '', '', '', '6.191429', '46.709644'], ['2019-73407', '2019-06-24', '000001', 'Vente', '1721.25', '', '', 'LE VILLAGE', 'B121', '25520', '25517', 'Saint-Gorgon-Main', '25', '', '', '25517000AA0104', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '153', '6.324236', '47.021641'], ['2019-73408', '2019-06-24', '000001', 'Vente', '1338.75', '', '', 'LE VILLAGE', 'B121', '25520', '25517', 'Saint-Gorgon-Main', '25', '', '', '25517000AA0056', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '119', '6.32106', '47.023053'], ['2019-73409', '2019-06-24', '000001', 'Vente', '843.75', '', '', 'LE VILLAGE', 'B121', '25520', '25517', 'Saint-Gorgon-Main', '25', '', '', '25517000AA0123', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '75', '6.325223', '47.022043'], ['2019-73410', '2019-06-27', '000001', 'Vente', '150000', '', '', 'RUE DU REC', '0870', '25130', '25321', 'Villers-le-Lac', '25', '', '', '25321000AI0052', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '1370', '6.683644', '47.058423'], ['2019-73411', '2019-06-25', '000001', 'Vente', '239400', '8', '', 'RUE GONSALVE PERTUSIER', '0248', '25500', '25411', 'Morteau', '25', '', '', '25411000AA0492', '', '', '15', '117.88', '16', '', '17', '', '5', '', '', '', '4', '2', 'Appartement', '117', '5', '', '', '', '', '', '6.603177', '47.055493'], ['2019-73411', '2019-06-25', '000001', 'Vente', '239400', '8', '', 'RUE GONSALVE PERTUSIER', '0248', '25500', '25411', 'Morteau', '25', '', '', '25411000AA0492', '', '', '22', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.603177', '47.055493'], ['2019-73412', '2019-06-28', '000001', 'Vente terrain à bâtir', '85056', '', '', 'LE GRAND COMMUNAL', 'B152', '25500', '25160', 'Les Combes', '25', '', '', '251600000A0859', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'AB', 'terrains a bâtir', '', '', '886', '6.542529', '47.062714'], ['2019-73413', '2019-06-27', '000001', 'Vente', '204000', '', '', 'LES MUROTS ET PLANCHES SEC', 'B014', '25530', '25441', 'Ouvans', '25', '', '', '25441000ZB0049', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '1712', '6.485413', '47.275148'], ['2019-73413', '2019-06-27', '000001', 'Vente', '204000', '', '', 'LES MUROTS ET PLANCHES SEC', 'B014', '25530', '25441', 'Ouvans', '25', '', '', '25441000ZB0063', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '4768', '6.485599', '47.275537'], ['2019-73413', '2019-06-27', '000001', 'Vente', '204000', '', '', 'LES MUROTS ET PLANCHES SEC', 'B014', '25530', '25441', 'Ouvans', '25', '', '', '25441000ZB0090', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '103', '6.484578', '47.275046'], ['2019-73413', '2019-06-27', '000001', 'Vente', '204000', '', '', 'LES MUROTS ET PLANCHES SEC', 'B014', '25530', '25441', 'Ouvans', '25', '', '', '25441000ZB0096', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'T', 'terres', '', '', '3000', '6.485612', '47.274852'], ['2019-73414', '2019-06-19', '000001', 'Vente', '64500', '', '', 'LOUIERE GRANDE PART', 'B013', '25620', '25305', "L'Hôpital-du-Grosbois", '25', '', '', '25305000ZD0247', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'L', 'landes', '', '', '2500', '6.205144', '47.174723'], ['2019-73415', '2019-06-18', '000001', 'Vente', '9000', '', '', 'AU POMMEREY', 'B170', '25580', '25222', 'Étalans', '25', '', '', '252220000A0499', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'BR', 'futaies résineuses', 'SAPIN', 'Sapins ou sapinière', '16405', '6.243286', '47.184528'], ['2019-73416', '2019-06-21', '000001', 'Vente', '4882', '', '', 'DERRIERE LE ROUCHAUD', 'B116', '25270', '25122', "Chapelle-d'Huin", '25', '', '', '251220000D0345', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'BR', 'futaies résineuses', '', '', '9381', '6.134061', '46.931563'], ['2019-73416', '2019-06-21', '000001', 'Vente', '4882', '', '', 'DERRIERE LE ROUCHAUD', 'B116', '25270', '25122', "Chapelle-d'Huin", '25', '', '', '251220000D0345', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'B', 'bois', '', '', '930', '6.134061', '46.931563'], ['2019-73417', '2019-06-20', '000001', 'Vente', '176000', '16', '', 'AV MAL DE LATTRE DE TASSIGNY', '0130', '25290', '25434', 'Ornans', '25', '', '', '25434000AT0649', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '118', '4', 'S', 'sols', '', '', '1045', '6.138951', '47.106723'], ['2019-73418', '2019-06-21', '000001', 'Vente', '104000', '12', '', 'RUE VOLTA', '0315', '25290', '25434', 'Ornans', '25', '', '', '25434000AT0265', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '53', '3', 'S', 'sols', '', '', '247', '6.140718', '47.102934'], ['2019-73418', '2019-06-21', '000001', 'Vente', '104000', '55', '', 'RUE VOLTA', '0315', '25290', '25434', 'Ornans', '25', '', '', '25434000AT0306', '', '', '', '', '', '', '', '', '', '', '', '', '0', '3', 'Dépendance', '', '0', 'S', 'sols', '', '', '48', '6.141018', '47.102717'], ['2019-73419', '2019-06-30', '000001', 'Vente', '170071.55', '', '', 'EN POUGIE', 'B062', '25800', '25578', 'Valdahon', '25', '', '', '25578000AP0266', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '249', '6.326724', '47.147908'], ['2019-73419', '2019-06-30', '000001', 'Vente', '170071.55', '', '', 'EN POUGIE', 'B062', '25800', '25578', 'Valdahon', '25', '', '', '25578000AP0268', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '2413', '6.326931', '47.148034'], ['2019-73420', '2019-01-08', '000001', 'Vente', '5000', '27', 'B', 'RUE DE LA PETITE HOLLANDE', '1430', '25200', '25388', 'Montbéliard', '25', '', '', '25388000CL0057', '', '', '7', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.797619', '47.498409'], ['2019-73421', '2019-01-09', '000001', 'Vente', '145000', '35', '', 'RUE DU CDT D AIGREMONT', '0228', '25120', '25356', 'Maîche', '25', '', '', '25356000ZL0007', '', '', '25', '', '38', '', '45', '', '', '', '', '', '3', '2', 'Appartement', '83', '4', '', '', '', '', '', '6.802214', '47.246882'], ['2019-73421', '2019-01-09', '000001', 'Vente', '145000', '35', '', 'RUE DU CDT D AIGREMONT', '0228', '25120', '25356', 'Maîche', '25', '', '', '25356000ZL0007', '', '', '35', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.802214', '47.246882'], ['2019-73422', '2019-01-02', '000001', 'Vente', '35000', '69', 'B', 'RUE DE BELFORT', '0100', '25200', '25388', 'Montbéliard', '25', '', '', '25388000BW0139', '', '', '184', '', '194', '', '203', '', '', '', '', '', '3', '2', 'Appartement', '48', '2', '', '', '', '', '', '6.800887', '47.508697'], ['2019-73423', '2019-01-07', '000001', 'Vente', '55000', '6', '', 'RUE DES PALES', '0500', '25420', '25632', 'Voujeaucourt', '25', '', '', '25632000BI0614', '', '', '', '', '', '', '', '', '', '', '', '', '0', '3', 'Dépendance', '', '0', 'S', 'sols', '', '', '806', '6.766746', '47.470683'], ['2019-73423', '2019-01-07', '000001', 'Vente', '55000', '6', '', 'RUE DES PALES', '0500', '25420', '25632', 'Voujeaucourt', '25', '', '', '25632000BI0614', '', '', '', '', '', '', '', '', '', '', '', '', '0', '3', 'Dépendance', '', '0', 'S', 'sols', '', '', '806', '6.766746', '47.470683'], ['2019-73423', '2019-01-07', '000001', 'Vente', '55000', '6', '', 'RUE DES PALES', '0500', '25420', '25632', 'Voujeaucourt', '25', '', '', '25632000BI0614', '', '', '', '', '', '', '', '', '', '', '', '', '0', '2', 'Appartement', '50', '2', 'S', 'sols', '', '', '806', '6.766746', '47.470683'], ['2019-73423', '2019-01-07', '000001', 'Vente', '55000', '6', '', 'RUE DES PALES', '0500', '25420', '25632', 'Voujeaucourt', '25', '', '', '25632000BI0614', '', '', '', '', '', '', '', '', '', '', '', '', '0', '2', 'Appartement', '71', '3', 'S', 'sols', '', '', '806', '6.766746', '47.470683'], ['2019-73423', '2019-01-07', '000001', 'Vente', '55000', '6', '', 'RUE DES PALES', '0500', '25420', '25632', 'Voujeaucourt', '25', '', '', '25632000BI0614', '', '', '', '', '', '', '', '', '', '', '', '', '0', '3', 'Dépendance', '', '0', 'S', 'sols', '', '', '806', '6.766746', '47.470683'], ['2019-73424', '2019-01-07', '000001', 'Vente', '107000', '', '', 'JARDINS DE LA LAVE', 'B088', '25310', '25497', 'Roches-lès-Blamont', '25', '', '', '254970000C0219', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'VE', 'vergers', '', '', '100', '6.849997', '47.409253'], ['2019-73424', '2019-01-07', '000001', 'Vente', '107000', '', '', 'JARDINS DE LA LAVE', 'B088', '25310', '25497', 'Roches-lès-Blamont', '25', '', '', '254970000C0220', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'VE', 'vergers', '', '', '100', '6.850021', '47.40929'], ['2019-73424', '2019-01-07', '000001', 'Vente', '107000', '', '', 'JARDINS DE LA LAVE', 'B088', '25310', '25497', 'Roches-lès-Blamont', '25', '', '', '254970000C0353', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '60', '6.850449', '47.409253'], ['2019-73424', '2019-01-07', '000001', 'Vente', '107000', '', '', 'LA LAVE DESSUS', 'B090', '25310', '25497', 'Roches-lès-Blamont', '25', '', '', '254970000C0447', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '21', '6.850018', '47.409501'], ['2019-73424', '2019-01-07', '000001', 'Vente', '107000', '5', '', 'RUE LOUIS PERGAUD', '0080', '25310', '25497', 'Roches-lès-Blamont', '25', '', '', '254970000C0449', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '62', '4', 'S', 'sols', '', '', '797', '6.850239', '47.409329'], ['2019-73425', '2019-01-04', '000001', 'Vente', '106500', '3', '', 'RUE DES CHAMPS FESCHELINS', '0132', '25600', '25614', 'Vieux-Charmont', '25', '', '', '25614000AC0472', '', '', '17', '', '61', '', '', '', '', '', '', '', '2', '2', 'Appartement', '68', '3', '', '', '', '', '', '6.83417', '47.52118'], ['2019-73426', '2019-01-10', '000001', 'Vente', '149000', '', '', 'LE VILLAGE', 'B102', '25190', '25503', 'Rosières-sur-Barbèche', '25', '', '', '255030000C0209', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '140', '6.66085', '47.317035'], ['2019-73426', '2019-01-10', '000001', 'Vente', '149000', '2', '', 'RUE DES TILLEULS', '0058', '25190', '25503', 'Rosières-sur-Barbèche', '25', '', '', '255030000C0319', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '107', '5', 'J', 'jardins', '', '', '1239', '6.661003', '47.317272'], ['2019-73426', '2019-01-10', '000001', 'Vente', '149000', '2', '', 'RUE DES TILLEULS', '0058', '25190', '25503', 'Rosières-sur-Barbèche', '25', '', '', '255030000C0319', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '107', '5', 'S', 'sols', '', '', '301', '6.661003', '47.317272'], ['2019-73427', '2019-01-23', '000001', 'Vente', '167050', '29', '', 'RUE DE MONTBELIARD', '0040', '25550', '25207', 'Dung', '25', '', '', '25207000AB0098', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '97', '7', 'S', 'sols', '', '', '477', '6.754559', '47.506776'], ['2019-73427', '2019-01-23', '000001', 'Vente', '167050', '29', '', 'RUE DE MONTBELIARD', '0040', '25550', '25207', 'Dung', '25', '', '', '25207000AB0099', '', '', '', '', '', '', '', '', '', '', '', '', '0', '3', 'Dépendance', '', '0', 'S', 'sols', '', '', '137', '6.754684', '47.506826'], ['2019-73428', '2019-01-29', '000001', 'Vente', '81150', '25', '', 'RUE SAINT GEORGES', '1690', '25200', '25388', 'Montbéliard', '25', '', '', '25388000AL0200', '', '', '11', '', '52', '', '64', '', '', '', '', '', '3', '2', 'Appartement', '57', '2', '', '', '', '', '', '6.789117', '47.50932'], ['2019-73429', '2019-01-08', '000001', 'Vente', '63000', '76', '', 'RUE DU BOIS BOURGEOIS', '0170', '25200', '25388', 'Montbéliard', '25', '', '', '25388000AK0064', '', '', '121', '62.55', '131', '', '141', '', '', '', '', '', '3', '2', 'Appartement', '61', '4', '', '', '', '', '', '6.786523', '47.513927'], ['2019-73429', '2019-01-08', '000001', 'Vente', '63000', '76', '', 'RUE DU BOIS BOURGEOIS', '0170', '25200', '25388', 'Montbéliard', '25', '', '', '25388000AK0064', '', '', '160', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.786523', '47.513927'], ['2019-73430', '2019-01-23', '000001', 'Vente', '39500', '1', 'B', 'RUE GRANDE', '0035', '25380', '25173', 'Cour-Saint-Maurice', '25', '', '', '25173000AC0013', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '123', '7', 'S', 'sols', '', '', '760', '6.700499', '47.255733'], ['2019-73431', '2019-01-21', '000001', 'Vente', '10000', '18', 'B', 'RUE DE LA VIE', '0170', '25260', '25524', 'Saint-Maurice-Colombier', '25', '', '', '255240000E0942', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '80', '2', 'S', 'sols', '', '', '226', '6.643744', '47.440956'], ['2019-73431', '2019-01-21', '000001', 'Vente', '10000', '', '', 'SAINT MAURICE ECHELOTTE', 'B159', '25260', '25524', 'Saint-Maurice-Colombier', '25', '', '', '255240000E0943', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'VE', 'vergers', '', '', '50', '6.643887', '47.440932'], ['2019-73432', '2019-01-17', '000001', 'Vente', '99000', '5100', '', 'A MOULIN DU PLAIN', 'B222', '25470', '25314', 'Indevillers', '25', '', '', '253140000F0091', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '50', '3', 'S', 'sols', '', '', '360', '6.95336', '47.293638'], ['2019-73432', '2019-01-17', '000001', 'Vente', '99000', '', '', 'A MOULIN DU PLAIN', 'B222', '25470', '25314', 'Indevillers', '25', '', '', '253140000F0146', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '355', '6.953351', '47.293605'], ['2019-73432', '2019-01-17', '000001', 'Vente', '99000', '', '', 'A MOULIN DU PLAIN', 'B222', '25470', '25314', 'Indevillers', '25', '', '', '253140000F0160', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'L', 'landes', 'FRICH', 'Friche', '68', '6.953576', '47.293463'], ['2019-73433', '2019-01-21', '000001', 'Vente', '17000', '2', '', 'ALL AUGUSTE POINTELIN', '0110', '25700', '25580', 'Valentigney', '25', '', '', '25580000BV0217', '', '', '27', '', '40', '67.69', '', '', '', '', '', '', '2', '2', 'Appartement', '73', '4', '', '', '', '', '', '6.828315', '47.478265'], ['2019-73434', '2019-02-07', '000001', 'Vente', '156750', '8', '', 'RUE DE LA CRAIE', '0013', '25470', '25174', 'Courtefontaine', '25', '', '', '251740000C0373', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '77', '5', 'S', 'sols', '', '', '1184', '6.904052', '47.320012'], ['2019-73435', '2019-02-08', '000001', 'Vente', '70000', '7', 'B', 'RUE DE LA COMBE GUENOT', '0130', '25230', '25539', 'Seloncourt', '25', '', '', '25539000AL0463', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '71', '3', 'S', 'sols', '', '', '464', '6.871352', '47.460158'], ['2019-73436', '2019-01-29', '000001', 'Vente', '130450', '23', '', 'RUE DES CAMPENOTTES', '0140', '25550', '25048', 'Bavans', '25', '', '', '25048000AE0447', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '78', '3', 'S', 'sols', '', '', '500', '6.736101', '47.483851'], ['2019-73436', '2019-01-29', '000001', 'Vente', '130450', '23', '', 'RUE DES CAMPENOTTES', '0140', '25550', '25048', 'Bavans', '25', '', '', '25048000AE0447', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '78', '3', 'J', 'jardins', 'MARAI', 'Pré marais', '758', '6.736101', '47.483851'], ['2019-73437', '2019-02-01', '000001', 'Vente', '700', '', '', 'DERRIERE LE FOUR', 'B036', '25150', '25214', 'Écot', '25', '', '', '25214000ZC0194', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '2805', '6.726657', '47.42824'], ['2019-73438', '2019-02-13', '000001', 'Vente', '2000', '1214', '', 'CHAMPS DES GRAVIERS', 'B026', '25260', '25524', 'Saint-Maurice-Colombier', '25', '', '', '25524158ZO0083', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '20', '1', 'S', 'sols', '', '', '430', '6.627874', '47.44514'], ['2019-73439', '2019-02-01', '000001', 'Vente', '235400', '5', '', 'RUE DE PARIS', '0738', '25120', '25356', 'Maîche', '25', '', '', '25356000ZI0125', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '169', '6.813686', '47.248132'], ['2019-73439', '2019-02-01', '000001', 'Vente', '235400', '5', '', 'RUE DE PARIS', '0738', '25120', '25356', 'Maîche', '25', '', '', '25356000ZI0136', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '107', '4', 'S', 'sols', '', '', '281', '6.813861', '47.248191'], ['2019-73440', '2019-02-08', '000001', 'Vente', '65000', '', '', 'AU VILLAGE', 'B140', '25260', '25350', 'Lougres', '25', '', '', '25350000AB0152', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '348', '6.687841', '47.469515'], ['2019-73440', '2019-02-08', '000001', 'Vente', '65000', '', '', 'AU VILLAGE', 'B140', '25260', '25350', 'Lougres', '25', '', '', '25350000AB0153', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'J', 'jardins', '', '', '264', '6.68787', '47.469608'], ['2019-73440', '2019-02-08', '000001', 'Vente', '65000', '3', '', 'RUE DE LA ROCHETTE', '0240', '25260', '25350', 'Lougres', '25', '', '', '25350000AB0547', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '132', '5', 'S', 'sols', '', '', '347', '6.687591', '47.469412'], ['2019-73441', '2019-02-22', '000001', 'Vente', '163500', '12', '', 'RUE COTEAU CLERC', '0160', '25230', '25539', 'Seloncourt', '25', '', '', '25539000AB0285', '', '', '84', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.857073', '47.467359'], ['2019-73441', '2019-02-22', '000001', 'Vente', '163500', '12', '', 'RUE COTEAU CLERC', '0160', '25230', '25539', 'Seloncourt', '25', '', '', '25539000AB0285', '', '', '133', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.857073', '47.467359'], ['2019-73441', '2019-02-22', '000001', 'Vente', '163500', '12', '', 'RUE COTEAU CLERC', '0160', '25230', '25539', 'Seloncourt', '25', '', '', '25539000AB0285', '', '', '48', '', '72', '', '', '', '', '', '', '', '2', '2', 'Appartement', '93', '4', '', '', '', '', '', '6.857073', '47.467359'], ['2019-73442', '2019-02-08', '000001', 'Vente', '142300', '8', 'A', 'RUE GRANDE', '0036', '25150', '25216', 'Écurcey', '25', '', '', '25216000AH0021', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '90', '4', 'S', 'sols', '', '', '948', '6.791741', '47.386595'], ['2019-73442', '2019-02-08', '000001', 'Vente', '142300', '', '', 'SOUS LA COTE', 'B096', '25150', '25216', 'Écurcey', '25', '', '', '25216000AH0219', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '97', '6.791495', '47.386394'], ['2019-73442', '2019-02-08', '000001', 'Vente', '142300', '10', '', 'RUE GRANDE', '0036', '25150', '25216', 'Écurcey', '25', '', '', '25216000AH0322', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'BT', 'taillis simples', '', '', '703', '6.791942', '47.386621'], ['2019-73443', '2019-02-25', '000001', 'Vente', '27650', '17', '', 'RUE HELENE BOUCHER', '0935', '25200', '25388', 'Montbéliard', '25', '', '', '25388000BO0026', '', '', '4', '', '79', '', '', '', '', '', '', '', '2', '2', 'Appartement', '49', '2', '', '', '', '', '', '6.791772', '47.499209'], ['2019-73444', '2019-01-24', '000001', 'Vente', '170000', '39', '', 'RUE DES BARRES', '0130', '25700', '25580', 'Valentigney', '25', '', '', '25580000BR0460', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '416', '6.825147', '47.462794'], ['2019-73444', '2019-01-24', '000001', 'Vente', '170000', '39', 'B', 'RUE DES BARRES', '0130', '25700', '25580', 'Valentigney', '25', '', '', '25580000BR0462', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '93', '4', 'S', 'sols', '', '', '254', '6.825513', '47.462707'], ['2019-73445', '2019-02-05', '000001', 'Vente', '142000', '', '', 'LES BECHOTS', 'B003', '25400', '25031', 'Audincourt', '25', '', '', '25031000AR0603', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '12', '6.854434', '47.476024'], ['2019-73445', '2019-02-05', '000001', 'Vente', '142000', '', '', 'LES BECHOTS', 'B003', '25400', '25031', 'Audincourt', '25', '', '', '25031000AR0607', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '728', '6.854249', '47.475778'], ['2019-73445', '2019-02-05', '000001', 'Vente', '142000', '', '', 'LES BECHOTS', 'B003', '25400', '25031', 'Audincourt', '25', '', '', '25031000AR0612', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '23', '6.853982', '47.475863'], ['2019-73445', '2019-02-05', '000001', 'Vente', '142000', '', '', 'LES BECHOTS', 'B003', '25400', '25031', 'Audincourt', '25', '', '', '25031000AR0615', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '60', '6.854095', '47.475643'], ['2019-73445', '2019-02-05', '000001', 'Vente', '142000', '', '', 'LES BECHOTS', 'B003', '25400', '25031', 'Audincourt', '25', '', '', '25031000AR0616', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '32', '6.854073', '47.475562'], ['2019-73445', '2019-02-05', '000001', 'Vente', '142000', '', '', 'LES BECHOTS', 'B003', '25400', '25031', 'Audincourt', '25', '', '', '25031000AR0618', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '6', '6.853975', '47.475639'], ['2019-73445', '2019-02-05', '000001', 'Vente', '142000', '13', 'D', 'RUE MARCEL PAUL', '0603', '25400', '25031', 'Audincourt', '25', '', '', '25031000AR0620', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '130', '5', 'S', 'sols', '', '', '395', '6.853977', '47.475506'], ['2019-73445', '2019-02-05', '000001', 'Vente', '142000', '', '', 'LES BECHOTS', 'B003', '25400', '25031', 'Audincourt', '25', '', '', '25031000AR0641', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '54', '6.853852', '47.475464'], ['2019-73446', '2019-02-07', '000001', 'Vente', '80000', '1', '', 'GR GRANDE RUE', '0375', '25150', '25463', 'Pont-de-Roide-Vermondans', '25', '', '', '25463603AE0001', '', '', '', '', '', '', '', '', '', '', '', '', '0', '3', 'Dépendance', '', '0', 'S', 'sols', '', '', '986', '6.762696', '47.388278'], ['2019-73446', '2019-02-07', '000001', 'Vente', '80000', '1', '', 'GR GRANDE RUE', '0375', '25150', '25463', 'Pont-de-Roide-Vermondans', '25', '', '', '25463603AE0001', '', '', '', '', '', '', '', '', '', '', '', '', '0', '2', 'Appartement', '57', '3', 'S', 'sols', '', '', '986', '6.762696', '47.388278'], ['2019-73446', '2019-02-07', '000001', 'Vente', '80000', '1', '', 'GR GRANDE RUE', '0375', '25150', '25463', 'Pont-de-Roide-Vermondans', '25', '', '', '25463603AE0001', '', '', '', '', '', '', '', '', '', '', '', '', '0', '2', 'Appartement', '52', '3', 'S', 'sols', '', '', '986', '6.762696', '47.388278'], ['2019-73446', '2019-02-07', '000001', 'Vente', '80000', '', '', 'LES PRES DE LA CRAYE', 'B101', '25150', '25463', 'Pont-de-Roide-Vermondans', '25', '', '', '25463603AE0002', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'VE', 'vergers', '', '', '827', '6.762286', '47.38843'], ['2019-73447', '2019-02-05', '000001', 'Vente', '900', '', '', 'LES GRANDES PRENES', 'B145', '25350', '25367', 'Mandeure', '25', '', '', '25367000AX0188', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '683', '6.803319', '47.446327'], ['2019-73447', '2019-02-05', '000001', 'Vente', '900', '', '', 'LES GRANDES PRENES', 'B145', '25350', '25367', 'Mandeure', '25', '', '', '25367000AX0190', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '377', '6.803463', '47.446443'], ['2019-73447', '2019-02-05', '000001', 'Vente', '900', '', '', 'CHAMPS DE LA CHAPELLE', 'B026', '25350', '25367', 'Mandeure', '25', '', '', '25367000ZB0045', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '340', '6.833001', '47.439732'], ['2019-73447', '2019-02-05', '000001', 'Vente', '900', '', '', 'AUX ARGELIERES', 'B004', '25350', '25367', 'Mandeure', '25', '', '', '25367000ZE0056', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'T', 'terres', '', '', '840', '6.812132', '47.439382'], ['2019-73448', '2019-03-04', '000001', 'Vente', '163170', '1', '', 'RUE DE FESCHES LE CHATEL', '0280', '25460', '25228', 'Étupes', '25', '', '', '25228000AB0637', '', '', '6', '', '', '', '', '', '', '', '', '', '1', '2', 'Appartement', '129', '3', '', '', '', '', '', '6.861385', '47.507296'], ['2019-73448', '2019-03-04', '000001', 'Vente', '163170', '1', '1', 'RUE DE FESCHES LE CHATEL', '0280', '25460', '25228', 'Étupes', '25', '', '', '25228000AB1004', '', '', '', '', '', '', '', '', '', '', '', '', '0', '3', 'Dépendance', '', '0', 'S', 'sols', '', '', '28', '6.861491', '47.507157'], ['2019-73449', '2019-02-28', '000001', 'Vente', '148000', '3', 'B', 'RUE DES PRES', '0790', '25400', '25031', 'Audincourt', '25', '', '', '25031000AI0220', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '81', '5', 'S', 'sols', '', '', '735', '6.842372', '47.483065'], ['2019-73450', '2019-02-13', '000001', 'Vente', '144000', '', '', 'LE GRAND CROT', 'B053', '25140', '25127', 'Charquemont', '25', '', '', '25127000AN0059', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'AB', 'terrains a bâtir', '', '', '2046', '6.823115', '47.203517'], ['2019-73450', '2019-02-13', '000001', 'Vente', '144000', '', '', 'LE GRAND CROT', 'B053', '25140', '25127', 'Charquemont', '25', '', '', '25127000AN0062', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '9954', '6.823396', '47.203042'], ['2019-73451', '2019-02-20', '000001', 'Vente', '123000', '16', '', 'RUE SUR LA TOUR', '0580', '25600', '25428', 'Nommay', '25', '', '', '25428000AC0146', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '75', '5', 'S', 'sols', '', '', '830', '6.845796', '47.538402'], ['2019-73452', '2019-02-14', '000001', 'Vente', '88000', '55', '', 'RTE D AUDINCOURT', '0090', '25200', '25388', 'Montbéliard', '25', '', '', '25388000BH0397', '', '', '14', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.806817', '47.498037'], ['2019-73452', '2019-02-14', '000001', 'Vente', '88000', '55', '', 'RTE D AUDINCOURT', '0090', '25200', '25388', 'Montbéliard', '25', '', '', '25388000BH0397', '', '', '6', '', '', '', '', '', '', '', '', '', '1', '2', 'Appartement', '19', '1', '', '', '', '', '', '6.806817', '47.498037'], ['2019-73452', '2019-02-14', '000001', 'Vente', '88000', '55', '', 'RTE D AUDINCOURT', '0090', '25200', '25388', 'Montbéliard', '25', '', '', '25388000BH0397', '', '', '13', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.806817', '47.498037'], ['2019-73452', '2019-02-14', '000001', 'Vente', '88000', '55', '', 'RTE D AUDINCOURT', '0090', '25200', '25388', 'Montbéliard', '25', '', '', '25388000BH0397', '', '', '5', '', '', '', '', '', '', '', '', '', '1', '2', 'Appartement', '29', '1', '', '', '', '', '', '6.806817', '47.498037'], ['2019-73453', '2019-03-01', '000001', 'Vente', '38000', '16', '', 'RUE D ETUPES', '0200', '25490', '25190', 'Dampierre-les-Bois', '25', '', '', '25190000AE0063', '', '', '2', '', '8', '', '', '', '', '', '', '', '2', '2', 'Appartement', '37', '2', '', '', '', '', '', '6.909656', '47.508469'], ['2019-73454', '2019-02-22', '000001', 'Vente', '2300', '', '', 'SOUS LE TAILLIS', 'B041', '25470', '25559', 'Thiébouhans', '25', '', '', '25559000AC0183', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '4920', '6.851865', '47.277288'], ['2019-73454', '2019-02-22', '000001', 'Vente', '2300', '', '', 'SOUS LE TAILLIS', 'B041', '25470', '25559', 'Thiébouhans', '25', '', '', '25559000AC0183', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '2460', '6.851865', '47.277288'], ['2019-73455', '2019-02-20', '000001', 'Vente', '1457', '', '', 'SUR LA RUOTTE', 'B066', '25700', '25580', 'Valentigney', '25', '', '', '25580000AL0389', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'J', 'jardins', 'POTAG', 'Jardin potager', '67', '6.825016', '47.466909'], ['2019-73455', '2019-02-20', '000001', 'Vente', '1457', '', '', 'SUR LA RUOTTE', 'B066', '25700', '25580', 'Valentigney', '25', '', '', '25580000AL0399', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '218', '6.824632', '47.466315'], ['2019-73455', '2019-02-20', '000001', 'Vente', '1457', '', '', 'AUX COURBES COMBES', 'B025', '25700', '25580', 'Valentigney', '25', '', '', '25580000AT0115', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '1172', '6.822312', '47.454046'], ['2019-73456', '2019-02-20', '000001', 'Vente', '720', '', '', 'SUR LA RUOTTE', 'B066', '25700', '25580', 'Valentigney', '25', '', '', '25580000AL0371', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'J', 'jardins', 'POTAG', 'Jardin potager', '320', '6.825135', '47.466509'], ['2019-73456', '2019-02-20', '000001', 'Vente', '720', '', '', 'SUR LA RUOTTE', 'B066', '25700', '25580', 'Valentigney', '25', '', '', '25580000AL0372', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'J', 'jardins', 'POTAG', 'Jardin potager', '400', '6.825936', '47.466356'], ['2019-73457', '2019-03-12', '000001', 'Vente', '20500', '34', '', 'RUE DU PETIT CHENOIS', '1420', '25200', '25388', 'Montbéliard', '25', '', '', '25388000BP0008', '', '', '37', '', '95', '', '', '', '', '', '', '', '2', '2', 'Appartement', '49', '2', '', '', '', '', '', '6.799196', '47.501838'], ['2019-73458', '2019-02-18', '000001', 'Vente', '127500', '13', '', 'PL DE L HOTEL DE VILLE', '0360', '25140', '25127', 'Charquemont', '25', '', '', '25127000AE0182', '', '', '23', '88.45', '8', '', '', '', '', '', '', '', '2', '2', 'Appartement', '93', '4', '', '', '', '', '', '6.823789', '47.212855'], ['2019-73459', '2019-02-18', '000001', 'Vente', '217483', '6', '', 'RUE DE CHAMESOL', '0020', '25190', '25393', 'Montécheroux', '25', '', '', '253930000D0414', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '100', '5', 'S', 'sols', '', '', '272', '6.809163', '47.349334'], ['2019-73459', '2019-02-18', '000001', 'Vente', '217483', '', '', 'AUX QUEMENES', 'B132', '25190', '25393', 'Montécheroux', '25', '', '', '253930000D0417', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '500', '6.809501', '47.349079'], ['2019-73459', '2019-02-18', '000001', 'Vente', '217483', '', '', 'AUX QUEMENES', 'B132', '25190', '25393', 'Montécheroux', '25', '', '', '253930000D0417', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'T', 'terres', '', '', '1265', '6.809501', '47.349079'], ['2019-73460', '2019-03-11', '000001', 'Vente', '55000', '23', '', 'RUE DE VANDONCOURT', '0430', '25230', '25539', 'Seloncourt', '25', '', '', '25539000AI0101', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '64', '3', 'VE', 'vergers', '', '', '550', '6.865479', '47.46168'], ['2019-73460', '2019-03-11', '000001', 'Vente', '55000', '23', '', 'RUE DE VANDONCOURT', '0430', '25230', '25539', 'Seloncourt', '25', '', '', '25539000AI0101', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '64', '3', 'S', 'sols', '', '', '219', '6.865479', '47.46168'], ['2019-73460', '2019-03-11', '000001', 'Vente', '55000', '', '', 'RUE DE VANDONCOURT', '0430', '25230', '25539', 'Seloncourt', '25', '', '', '25539000AI0102', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'BS', 'taillis sous futaie', '', '', '252', '6.865369', '47.461722'], ['2019-73460', '2019-03-11', '000001', 'Vente', '55000', '', '', 'RUE DE VANDONCOURT', '0430', '25230', '25539', 'Seloncourt', '25', '', '', '25539000AI0102', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '60', '6.865369', '47.461722'], ['2019-73461', '2019-03-07', '000001', 'Vente', '32000', '', '', 'LES CORBIERES', 'B038', '25210', '25456', 'Plaimbois-du-Miroir', '25', '', '', '254560000B0121', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'BR', 'futaies résineuses', '', '', '20034', '6.611668', '47.191918'], ['2019-73462', '2019-03-06', '000001', 'Vente', '4700', '', '', 'PRE MILIERE', 'B045', '25450', '25193', 'Damprichard', '25', '', '', '251930000E0058', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'BR', 'futaies résineuses', 'EPICE', 'Epicéas', '6400', '6.889994', '47.242137'], ['2019-73463', '2019-02-23', '000001', 'Vente', '97000', '33', '', 'GR GRANDE RUE', '0325', '25600', '25428', 'Nommay', '25', '', '', '25428000AB0229', '', '', '11', '', '15', '', '3', '102.39', '7', '', '', '', '4', '2', 'Appartement', '100', '4', '', '', '', '', '', '6.845789', '47.535874'], ['2019-73464', '2019-02-21', '000001', 'Vente', '63200', '8', '', 'RUE PARMENTIER', '1370', '25200', '25388', 'Montbéliard', '25', '', '', '25388000AM0360', '', '', '178', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.793335', '47.515027'], ['2019-73464', '2019-02-21', '000001', 'Vente', '63200', '8', '', 'RUE PARMENTIER', '1370', '25200', '25388', 'Montbéliard', '25', '', '', '25388000AM0360', '', '', '59', '', '88', '66.59', '', '', '', '', '', '', '2', '2', 'Appartement', '67', '3', '', '', '', '', '', '6.793335', '47.515027'], ['2019-73465', '2019-02-26', '000001', 'Vente', '5000', '', '', 'PRES DES BERTOTTES', 'B082', '25150', '25214', 'Écot', '25', '', '', '252140000C1247', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'BT', 'taillis simples', '', '', '3163', '6.719456', '47.421382'], ['2019-73465', '2019-02-26', '000001', 'Vente', '5000', '', '', 'PRES DES BERTOTTES', 'B082', '25150', '25214', 'Écot', '25', '', '', '252140000C1273', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'BT', 'taillis simples', '', '', '2450', '6.718338', '47.421039'], ['2019-73465', '2019-02-26', '000001', 'Vente', '5000', '', '', 'EN COURCELOTTE', 'B034', '25150', '25214', 'Écot', '25', '', '', '252140000C1330', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'BT', 'taillis simples', '', '', '9021', '6.718707', '47.412821'], ['2019-73466', '2019-02-20', '000002', 'Vente', '41500', '', '', 'VERS LES VIGNES', 'B101', '25150', '25033', 'Autechaux-Roide', '25', '', '', '25033000AD0170', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'AB', 'terrains a bâtir', '', '', '1179', '6.818261', '47.394082'], ['2019-73466', '2019-02-20', '000002', 'Vente', '41500', '', '', 'VERS LES VIGNES', 'B101', '25150', '25033', 'Autechaux-Roide', '25', '', '', '25033000AD0173', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'AB', 'terrains a bâtir', '', '', '21', '6.81794', '47.394001'], ['2019-73466', '2019-02-20', '000002', 'Vente', '41500', '', '', 'VERS LES VIGNES', 'B101', '25150', '25033', 'Autechaux-Roide', '25', '', '', '25033000AD0177', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '2198', '6.818124', '47.39372'], ['2019-73467', '2019-02-20', '000001', 'Vente', '127000', '6', '', 'IMP DU PARC', '0252', '25350', '25367', 'Mandeure', '25', '', '', '25367000AI0020', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '141', '5', 'S', 'sols', '', '', '765', '6.827111', '47.444864'], ['2019-73468', '2019-03-12', '000002', 'Vente', '2000', '', '', 'BAS DE COMBOTTE', 'B004', '25550', '25048', 'Bavans', '25', '', '', '25048000AC0814', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'AB', 'terrains a bâtir', '', '', '108', '6.722927', '47.481573'], ['2019-73469', '2019-02-23', '000001', 'Vente', '136000', '1', 'F', 'RUE DU CHENE', '0060', '25350', '25367', 'Mandeure', '25', '', '', '25367000AK0393', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '95', '5', 'S', 'sols', '', '', '437', '6.829488', '47.445854'], ['2019-73470', '2019-02-23', '000001', 'Vente', '106500', '11', '', 'RUE DES ETAINS', '0190', '25490', '25190', 'Dampierre-les-Bois', '25', '', '', '25190000AB0060', '', '', '', '', '', '', '', '', '', '', '', '', '0', '4', 'Local industriel. commercial ou assimilé', '194', '0', 'S', 'sols', '', '', '1575', '6.921887', '47.515265'], ['2019-73471', '2019-02-21', '000001', 'Vente', '8176', '', '', 'AU VILLAGE', 'B046', '25120', '25108', "Cernay-l'Église", '25', '', '', '25108000AB0019', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'VE', 'vergers', '', '', '1022', '6.831887', '47.259459'], ['2019-73472', '2019-02-22', '000001', 'Vente', '34150', '13', '', 'RUE LOUIS PERGAUD', '0850', '25700', '25580', 'Valentigney', '25', '', '', '25580000BV0001', '', '', '54', '75.96', '64', '', '', '', '', '', '', '', '2', '2', 'Appartement', '76', '4', '', '', '', '', '', '6.822739', '47.479904'], ['2019-73473', '2019-03-15', '000001', 'Vente terrain à bâtir', '74976', '11', '', 'RUE EMILE ISENBART', '0040', '25500', '25050', 'Le Bélieu', '25', '', '', '25050000AB0064', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'AB', 'terrains a bâtir', '', '', '852', '6.627177', '47.119861'], ['2019-73474', '2019-03-02', '000001', 'Vente', '168000', '2', '', 'IMP DES CERISIERS', '0085', '25230', '25196', 'Dasle', '25', '', '', '251960000A0849', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '100', '4', 'S', 'sols', '', '', '659', '6.904684', '47.481663'], ['2019-73475', '2019-03-14', '000001', 'Vente', '191700', '18', '', 'RUE DE NEUCHATEL URTIERE', '0628', '25150', '25463', 'Pont-de-Roide-Vermondans', '25', '', '', '254636030C0655', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '120', '6', 'S', 'sols', '', '', '925', '6.752065', '47.388362'], ['2019-73475', '2019-03-14', '000001', 'Vente', '191700', '', '', 'LES CABOULOTS', 'B061', '25150', '25463', 'Pont-de-Roide-Vermondans', '25', '', '', '254636030C0806', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '625', '6.752501', '47.388102'], ['2019-73476', '2019-02-28', '000001', 'Vente', '2000', '', '', 'LES COMBOLES', 'B052', '25310', '25497', 'Roches-lès-Blamont', '25', '', '', '254970000A0457', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'T', 'terres', '', '', '5565', '6.85378', '47.413867'], ['2019-73476', '2019-02-28', '000001', 'Vente', '2000', '', '', 'LES COMBOLES', 'B052', '25310', '25497', 'Roches-lès-Blamont', '25', '', '', '254970000A0457', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'T', 'terres', '', '', '2782', '6.85378', '47.413867'], ['2019-73477', '2019-02-28', '000001', 'Vente', '169650', '21', '', 'RUE VICTOR HUGO', '0560', '25140', '25127', 'Charquemont', '25', '', '', '25127000AB0448', '', '', '4', '', '5', '', '6', '', '', '', '', '', '3', '2', 'Appartement', '128', '4', '', '', '', '', '', '6.816594', '47.217431'], ['2019-73477', '2019-02-28', '000001', 'Vente', '169650', '21', '', 'RUE VICTOR HUGO', '0560', '25140', '25127', 'Charquemont', '25', '', '', '25127000AB0448', '', '', '13', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.816594', '47.217431'], ['2019-73478', '2019-02-27', '000001', 'Vente', '91000', '12', '', 'RUE DES CHARMES', '0013', '25450', '25193', 'Damprichard', '25', '', '', '25193000AC0200', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '75', '3', 'S', 'sols', '', '', '709', '6.88196', '47.247548'], ['2019-73479', '2019-03-05', '000001', 'Vente', '125000', '11', '', 'RUE DU HAMEAU', '0028', '25120', '25392', 'Mont-de-Vougney', '25', '', '', '25392000AB0038', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '106', '5', 'S', 'sols', '', '', '1200', '6.715757', '47.237044'], ['2019-73479', '2019-03-05', '000001', 'Vente', '125000', '11', '', 'RUE DU HAMEAU', '0028', '25120', '25392', 'Mont-de-Vougney', '25', '', '', '25392000AB0038', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '106', '5', 'VE', 'vergers', '', '', '612', '6.715757', '47.237044'], ['2019-73480', '2019-02-28', '000001', 'Vente', '52000', '6', '', 'RUE DE SOCHAUX', '0470', '25200', '25284', 'Grand-Charmont', '25', '', '', '25284000AK0226', '', '', '42', '', '76', '93', '', '', '', '', '', '', '2', '2', 'Appartement', '93', '5', '', '', '', '', '', '6.826235', '47.526026'], ['2019-73481', '2019-02-28', '000001', 'Vente', '105000', '32', '', 'RUE DE SAINTE MARIE', '0280', '25260', '25350', 'Lougres', '25', '', '', '25350000AC0265', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '57', '4', 'S', 'sols', '', '', '450', '6.688774', '47.474823'], ['2019-73481', '2019-02-28', '000001', 'Vente', '105000', '', '', 'LE CHESAL', 'B021', '25260', '25350', 'Lougres', '25', '', '', '25350000AC0368', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'T', 'terres', '', '', '381', '6.689017', '47.474931'], ['2019-73482', '2019-02-28', '000001', 'Vente', '127200', '', '', 'RUE ARRAS', '0050', '25400', '25031', 'Audincourt', '25', '', '', '25031000AT0591', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'J', 'jardins', 'POTAG', 'Jardin potager', '2317', '6.846669', '47.473476'], ['2019-73483', '2019-02-27', '000001', 'Vente', '224900', '58', 'B', 'RUE DES SOURCES', '0745', '25600', '25614', 'Vieux-Charmont', '25', '', '', '25614000AD0397', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '120', '4', 'S', 'sols', '', '', '737', '6.83118', '47.525187'], ['2019-73484', '2019-02-27', '000001', 'Vente', '65990', '13', '', 'RUE DES GENTIANES', '0615', '25700', '25580', 'Valentigney', '25', '', '', '25580000BE0045', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '59', '3', 'S', 'sols', '', '', '131', '6.835393', '47.474927'], ['2019-73485', '2019-03-18', '000001', 'Vente', '165000', '', '', 'LES CHENEVIERES DESSOUS', 'B024', '25490', '25237', 'Fesches-le-Châtel', '25', '', '', '25237000AB0383', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '30', '6.895883', '47.522793'], ['2019-73485', '2019-03-18', '000001', 'Vente', '165000', '14', '', 'RUE LOUIS DORMOY', '0280', '25490', '25237', 'Fesches-le-Châtel', '25', '', '', '25237000AB0653', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '75', '4', 'S', 'sols', '', '', '617', '6.89609', '47.522798'], ['2019-73485', '2019-03-18', '000001', 'Vente', '165000', '', '', 'LES CHENEVIERES DESSOUS', 'B024', '25490', '25237', 'Fesches-le-Châtel', '25', '', '', '25237000AB0764', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'VE', 'vergers', '', '', '126', '6.895974', '47.522873'], ['2019-73485', '2019-03-18', '000001', 'Vente', '165000', '', '', 'LES CHENEVIERES DESSOUS', 'B024', '25490', '25237', 'Fesches-le-Châtel', '25', '', '', '25237000AB0766', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '62', '6.895905', '47.522849'], ['2019-73486', '2019-03-15', '000001', 'Vente', '28000', '34', '', 'RUE DU PETIT CHENOIS', '1420', '25200', '25388', 'Montbéliard', '25', '', '', '25388000BP0008', '', '', '113', '', '55', '', '', '', '', '', '', '', '2', '2', 'Appartement', '49', '2', '', '', '', '', '', '6.799196', '47.501838'], ['2019-73487', '2019-02-27', '000001', 'Vente', '17500', '25', '', 'RUE LOUIS PERGAUD', '0850', '25700', '25580', 'Valentigney', '25', '', '', '25580000BV0001', '', '', '195', '64.03', '213', '', '', '', '', '', '', '', '2', '2', 'Appartement', '63', '3', '', '', '', '', '', '6.822739', '47.479904'], ['2019-73488', '2019-03-01', '000001', 'Vente', '103000', '12', '', 'RUE COTEAU CLERC', '0160', '25230', '25539', 'Seloncourt', '25', '', '', '25539000AB0285', '', '', '102', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.857073', '47.467359'], ['2019-73488', '2019-03-01', '000001', 'Vente', '103000', '12', '', 'RUE COTEAU CLERC', '0160', '25230', '25539', 'Seloncourt', '25', '', '', '25539000AB0285', '', '', '64', '61.53', '', '', '', '', '', '', '', '', '1', '2', 'Appartement', '61', '3', '', '', '', '', '', '6.857073', '47.467359'], ['2019-73489', '2019-03-06', '000001', 'Vente', '80500', '5017', '', 'LE HAMEAU DE CHAUVILLIERS', 'B197', '25470', '25314', 'Indevillers', '25', '', '', '25314000ZC0042', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '180', '5', 'T', 'terres', '', '', '1280', '6.978547', '47.323685'], ['2019-73489', '2019-03-06', '000001', 'Vente', '80500', '5017', '', 'LE HAMEAU DE CHAUVILLIERS', 'B197', '25470', '25314', 'Indevillers', '25', '', '', '25314000ZC0042', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '180', '5', 'S', 'sols', '', '', '940', '6.978547', '47.323685'], ['2019-73490', '2019-03-13', '000001', 'Vente', '210000', '5001', '', 'RUE DU CHATEAU', '0013', '25470', '25314', 'Indevillers', '25', '', '', '25314000ZI0078', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '160', '5', 'S', 'sols', '', '', '766', '6.953893', '47.312228'], ['2019-73491', '2019-03-08', '000001', 'Vente', '161500', '18', '', 'RUE DE COURCELLES', '0160', '25400', '25020', 'Arbouans', '25', '', '', '25020000AA0078', '', '', '', '', '', '', '', '', '', '', '', '', '0', '2', 'Appartement', '80', '3', 'S', 'sols', '', '', '832', '6.807045', '47.492418'], ['2019-73491', '2019-03-08', '000001', 'Vente', '161500', '18', '', 'RUE DE COURCELLES', '0160', '25400', '25020', 'Arbouans', '25', '', '', '25020000AA0078', '', '', '', '', '', '', '', '', '', '', '', '', '0', '2', 'Appartement', '160', '1', 'S', 'sols', '', '', '832', '6.807045', '47.492418'], ['2019-73491', '2019-03-08', '000001', 'Vente', '161500', '18', '', 'RUE DE COURCELLES', '0160', '25400', '25020', 'Arbouans', '25', '', '', '25020000AA0078', '', '', '', '', '', '', '', '', '', '', '', '', '0', '2', 'Appartement', '100', '1', 'BT', 'taillis simples', '', '', '500', '6.807045', '47.492418'], ['2019-73491', '2019-03-08', '000001', 'Vente', '161500', '18', '', 'RUE DE COURCELLES', '0160', '25400', '25020', 'Arbouans', '25', '', '', '25020000AA0078', '', '', '', '', '', '', '', '', '', '', '', '', '0', '2', 'Appartement', '100', '1', 'S', 'sols', '', '', '832', '6.807045', '47.492418'], ['2019-73491', '2019-03-08', '000001', 'Vente', '161500', '18', '', 'RUE DE COURCELLES', '0160', '25400', '25020', 'Arbouans', '25', '', '', '25020000AA0078', '', '', '', '', '', '', '', '', '', '', '', '', '0', '2', 'Appartement', '88', '1', 'BT', 'taillis simples', '', '', '500', '6.807045', '47.492418'], ['2019-73491', '2019-03-08', '000001', 'Vente', '161500', '18', '', 'RUE DE COURCELLES', '0160', '25400', '25020', 'Arbouans', '25', '', '', '25020000AA0078', '', '', '', '', '', '', '', '', '', '', '', '', '0', '2', 'Appartement', '88', '1', 'S', 'sols', '', '', '832', '6.807045', '47.492418'], ['2019-73491', '2019-03-08', '000001', 'Vente', '161500', '18', '', 'RUE DE COURCELLES', '0160', '25400', '25020', 'Arbouans', '25', '', '', '25020000AA0078', '', '', '', '', '', '', '', '', '', '', '', '', '0', '2', 'Appartement', '80', '3', 'BT', 'taillis simples', '', '', '500', '6.807045', '47.492418'], ['2019-73491', '2019-03-08', '000001', 'Vente', '161500', '18', '', 'RUE DE COURCELLES', '0160', '25400', '25020', 'Arbouans', '25', '', '', '25020000AA0078', '', '', '', '', '', '', '', '', '', '', '', '', '0', '2', 'Appartement', '160', '1', 'BT', 'taillis simples', '', '', '500', '6.807045', '47.492418'], ['2019-73491', '2019-03-08', '000001', 'Vente', '161500', '18', '', 'RUE DE COURCELLES', '0160', '25400', '25020', 'Arbouans', '25', '', '', '25020000AA0299', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '83', '6.807246', '47.492265'], ['2019-73492', '2019-03-28', '000001', 'Vente', '11000', '18', '', 'RUE DU GENERAL LECLERC', '0810', '25200', '25388', 'Montbéliard', '25', '', '', '25388000AM0134', '', '', '132', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.798026', '47.51193'], ['2019-73493', '2019-03-08', '000001', 'Vente', '600000', '', '', 'SUR L EGLISE', 'B016', '25470', '25280', 'Goumois', '25', '', '', '25280000AC0131', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'VE', 'vergers', '', '', '1665', '6.944795', '47.260312'], ['2019-73493', '2019-03-08', '000001', 'Vente', '600000', '', '', 'SUR L EGLISE', 'B016', '25470', '25280', 'Goumois', '25', '', '', '25280000AC0132', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'VE', 'vergers', '', '', '2162', '6.945362', '47.260244'], ['2019-73493', '2019-03-08', '000001', 'Vente', '600000', '', '', 'SUR L EGLISE', 'B016', '25470', '25280', 'Goumois', '25', '', '', '25280000AC0133', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'J', 'jardins', '', '', '562', '6.945238', '47.260468'], ['2019-73493', '2019-03-08', '000001', 'Vente', '600000', '', '', 'SUR L EGLISE', 'B016', '25470', '25280', 'Goumois', '25', '', '', '25280000AC0134', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '1035', '6.945647', '47.260526'], ['2019-73493', '2019-03-08', '000001', 'Vente', '600000', '', '', 'SUR L EGLISE', 'B016', '25470', '25280', 'Goumois', '25', '', '', '25280000AC0135', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'VE', 'vergers', '', '', '1325', '6.945697', '47.261102'], ['2019-73493', '2019-03-08', '000001', 'Vente', '600000', '1', '', 'RTE DE LA CORNICHE', '0022', '25470', '25280', 'Goumois', '25', '', '', '25280000AC0136', '', '', '', '', '', '', '', '', '', '', '', '', '0', '4', 'Local industriel. commercial ou assimilé', '830', '0', 'S', 'sols', '', '', '1730', '6.94522', '47.260661'], ['2019-73494', '2019-03-08', '000001', 'Vente', '189950', '2', 'E', 'IMP DE BONDEVAL', '0089', '25400', '25031', 'Audincourt', '25', '', '', '25031000AW0254', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '502', '6.842606', '47.470807'], ['2019-73494', '2019-03-08', '000001', 'Vente', '189950', '', '', 'RUE DE BONDEVAL', '0090', '25400', '25031', 'Audincourt', '25', '', '', '25031000AW0255', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '81', '6.842346', '47.470926'], ['2019-73495', '2019-03-11', '000001', 'Vente', '1480', '', '', 'AU VILLAGE', 'B134', '25490', '25011', 'Allenjoie', '25', '', '', '25011000AB0689', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '21', '6.897299', '47.534947'], ['2019-73495', '2019-03-11', '000001', 'Vente', '1480', '', '', 'AU VILLAGE', 'B134', '25490', '25011', 'Allenjoie', '25', '', '', '25011000AB0690', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '16', '6.897427', '47.5351'], ['2019-73496', '2019-03-22', '000001', 'Vente', '97000', '20', '', 'PL DES COMBES ST GERMAIN', '0420', '25700', '25580', 'Valentigney', '25', '', '', '25580000AR0128', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '91', '5', 'S', 'sols', '', '', '658', '6.828244', '47.450207'], ['2019-73497', '2019-03-27', '000002', 'Vente', '6440', '', '', 'LES COURBIERES', 'B106', '25350', '25367', 'Mandeure', '25', '', '', '25367000AI0518', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'AB', 'terrains a bâtir', '', '', '322', '6.823963', '47.443395'], ['2019-73498', '2019-03-26', '000001', 'Vente', '4092', '', '', 'LES PIGUESSES', 'B069', '25150', '25082', 'Bourguignon', '25', '', '', '250820000A1172', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '62', '6.784826', '47.415588'], ['2019-73499', '2019-03-11', '000001', 'Vente', '119050', '12', 'B', 'AV CARNOT', '0220', '25200', '25388', 'Montbéliard', '25', '', '', '25388000BV0101', '', '', '1', '', '12', '98.51', '14', '', '4', '', '', '', '4', '2', 'Appartement', '101', '2', '', '', '', '', '', '6.803014', '47.508056'], ['2019-73500', '2019-03-11', '000001', 'Vente', '134062', '', '', 'LES CHAMPS DES POMMEROTS', 'B026', '25310', '25063', 'Blamont', '25', '', '', '250630000D0552', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '10', '6.847398', '47.384516'], ['2019-73500', '2019-03-11', '000001', 'Vente', '134062', '12', '', 'IMP DES VIOLETTES', '0260', '25310', '25063', 'Blamont', '25', '', '', '250630000D0556', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '91', '3', 'S', 'sols', '', '', '812', '6.846302', '47.383895'], ['2019-73500', '2019-03-11', '000001', 'Vente', '134062', '', '', 'LES CHAMPS DES POMMEROTS', 'B026', '25310', '25063', 'Blamont', '25', '', '', '250630000D0560', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '1303', '6.846617', '47.384299'], ['2019-73501', '2019-03-30', '000001', 'Vente', '182000', '6', '', 'CHE DE LA MUNIERE', '0100', '25310', '25562', 'Thulay', '25', '', '', '255620000A0489', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '112', '3', 'S', 'sols', '', '', '922', '6.865061', '47.427333'], ['2019-73501', '2019-03-30', '000001', 'Vente', '182000', '', '', 'ESPRIT', 'B019', '25310', '25562', 'Thulay', '25', '', '', '255620000A0492', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '657', '6.865065', '47.427233'], ['2019-73502', '2019-04-04', '000001', 'Vente', '800', '', '', 'LE VILLAGE', 'B114', '25700', '25370', 'Mathay', '25', '', '', '25370000AH0246', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'VE', 'vergers', '', '', '1219', '6.78711', '47.437692'], ['2019-73502', '2019-04-04', '000001', 'Vente', '800', '', '', 'LES PARTS D HIRMONT DE CA', 'B075', '25700', '25370', 'Mathay', '25', '', '', '253700000F1018', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '682', '6.773962', '47.454456'], ['2019-73503', '2019-04-04', '000001', 'Vente', '75000', '', '', 'RUE DE MONTBOUTON', '0280', '25230', '25196', 'Dasle', '25', '', '', '25196000AB0646', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'AG', "terrains d'agrément", 'PARC', 'Parc', '1175', '6.900057', '47.478136'], ['2019-73503', '2019-04-04', '000001', 'Vente', '75000', '', '', 'CHAMP DUVOID', 'B007', '25230', '25196', 'Dasle', '25', '', '', '25196000AB0724', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '594', '6.899405', '47.478168'], ['2019-73504', '2019-04-04', '000001', 'Vente', '8356.45', '', '', 'AUX BERCAMES', 'B003', '25600', '25188', 'Dambenois', '25', '', '', '25188000AA0095', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'T', 'terres', '', '', '6486', '6.873382', '47.543749'], ['2019-73504', '2019-04-04', '000001', 'Vente', '8356.45', '', '', 'ES PONSSOTS', 'B047', '25600', '25188', 'Dambenois', '25', '', '', '25188000AB0068', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '2130', '6.870802', '47.541377'], ['2019-73504', '2019-04-04', '000001', 'Vente', '8356.45', '', '', 'LES VIGNES', 'B092', '25600', '25188', 'Dambenois', '25', '', '', '25188000AI0011', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'L', 'landes', 'FRICH', 'Friche', '815', '6.871429', '47.547449'], ['2019-73504', '2019-04-04', '000001', 'Vente', '8356.45', '', '', 'LES CHAMPS AUX MALES', 'B020', '25600', '25188', 'Dambenois', '25', '', '', '25188000AI0016', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '3054', '6.873426', '47.548179'], ['2019-73504', '2019-04-04', '000001', 'Vente', '8356.45', '', '', 'LES COMBOTTES', 'B035', '25600', '25188', 'Dambenois', '25', '', '', '25188000AI0039', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'VE', 'vergers', '', '', '5760', '6.874776', '47.546606'], ['2019-73504', '2019-04-04', '000001', 'Vente', '8356.45', '', '', 'ES GRANDES BOULOYES', 'B046', '25600', '25188', 'Dambenois', '25', '', '', '25188000AM0032', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '3025', '6.869447', '47.539096'], ['2019-73504', '2019-04-04', '000001', 'Vente', '8356.45', '', '', 'COMBE JEAN L OYON', 'B033', '25600', '25188', 'Dambenois', '25', '', '', '25188000AM0135', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '608', '6.868485', '47.538046'], ['2019-73504', '2019-04-04', '000001', 'Vente', '8356.45', '', '', 'COMBE JEAN L OYON', 'B033', '25600', '25188', 'Dambenois', '25', '', '', '25188000AM0137', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '577', '6.867734', '47.53804'], ['2019-73504', '2019-04-04', '000001', 'Vente', '8356.45', '', '', 'AUX LONGUES RAIES', 'B061', '25600', '25188', 'Dambenois', '25', '', '', '25188000XX0012', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '130', '', ''], ['2019-73505', '2019-04-15', '000001', 'Vente', '242000', '6', '', 'RUE DES FRENES', '0025', '25120', '25108', "Cernay-l'Église", '25', '', '', '25108000AB0287', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '100', '5', 'S', 'sols', '', '', '911', '6.832253', '47.255727'], ['2019-73505', '2019-04-15', '000001', 'Vente', '242000', '6', '', 'RUE DES FRENES', '0025', '25120', '25108', "Cernay-l'Église", '25', '', '', '25108000AB0305', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '55', '6.832178', '47.255869'], ['2019-73506', '2019-03-26', '000001', 'Vente', '129000', '6', '', 'RUE DE L ABATTOIR', '0010', '25700', '25580', 'Valentigney', '25', '', '', '25580000BI0075', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '88', '5', 'S', 'sols', '', '', '505', '6.839738', '47.46665'], ['2019-73507', '2019-04-04', '000001', 'Vente', '142950', '7', '', 'RUE DES COURTS CHAMPS', '0180', '25310', '25304', 'Hérimoncourt', '25', '', '', '25304000AB0940', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '113', '6', 'S', 'sols', '', '', '314', '6.879393', '47.446904'], ['2019-73508', '2019-03-28', '000002', 'Vente', '7890.4', '', '', 'RUE DE CHAMPS VALLON', '0110', '25200', '25057', 'Bethoncourt', '25', '', '', '25057000AE0147', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '48', '6.81072', '47.538997'], ['2019-73508', '2019-03-28', '000002', 'Vente', '7890.4', '', '', 'RUE DE CHAMPS VALLON', '0110', '25200', '25057', 'Bethoncourt', '25', '', '', '25057000AI0216', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '38', '6.804218', '47.537199'], ['2019-73508', '2019-03-28', '000002', 'Vente', '7890.4', '', '', 'PL CUVIER', '0190', '25200', '25057', 'Bethoncourt', '25', '', '', '25057000AI0218', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '245', '6.804145', '47.53456'], ['2019-73509', '2019-03-28', '000001', 'Vente', '45000', '11', '', 'RUE MOZART', '1345', '25200', '25388', 'Montbéliard', '25', '', '', '25388000BP0112', '', '', '141', '', '150', '60', '', '', '', '', '', '', '2', '2', 'Appartement', '79', '4', '', '', '', '', '', '6.798406', '47.500672'], ['2019-73510', '2019-04-13', '000001', 'Vente', '52250', '64', '', 'GR GRANDE RUE', '0620', '25420', '25632', 'Voujeaucourt', '25', '', '', '25632000BD0024', '', '', '19', '', '32', '', '', '', '', '', '', '', '2', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.771896', '47.473962'], ['2019-73510', '2019-04-13', '000001', 'Vente', '52250', '64', '', 'GR GRANDE RUE', '0620', '25420', '25632', 'Voujeaucourt', '25', '', '', '25632000BD0024', '', '', '15', '', '19', '', '4', '', '', '', '', '', '3', '2', 'Appartement', '68', '3', '', '', '', '', '', '6.771896', '47.473962'], ['2019-73511', '2019-04-15', '000001', 'Vente', '30000', '21', '', 'RUE DU PETIT CHENOIS', '1420', '25200', '25388', 'Montbéliard', '25', '', '', '25388000BR0057', '', '', '33', '', '48', '76.87', '', '', '', '', '', '', '2', '2', 'Appartement', '77', '4', '', '', '', '', '', '6.797019', '47.501534'], ['2019-73512', '2019-04-16', '000001', 'Vente', '136000', '11', '', 'GR GRANDE RUE', '0120', '25400', '25555', 'Taillecourt', '25', '', '', '25555000AH0082', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '110', '5', 'S', 'sols', '', '', '939', '6.846421', '47.496347'], ['2019-73513', '2019-04-04', '000002', 'Vente', '22620', '', '', 'LE CRANTOT DES VUILLEMENOT', 'B087', '25210', '25074', 'Bonnétage', '25', '', '', '25074000AE0185', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'AB', 'terrains a bâtir', '', '', '377', '6.717166', '47.182875'], ['2019-73513', '2019-04-04', '000003', 'Vente', '22620', '', '', 'LE CRANTOT DES VUILLEMENOT', 'B087', '25210', '25074', 'Bonnétage', '25', '', '', '25074000AE0185', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'AB', 'terrains a bâtir', '', '', '377', '6.717166', '47.182875'], ['2019-73513', '2019-04-04', '000003', 'Vente', '22620', '', '', 'LES VUILLEMENOTS', 'B172', '25210', '25074', 'Bonnétage', '25', '', '', '250740000C0697', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '25902', '', ''], ['2019-73513', '2019-04-04', '000003', 'Vente', '22620', '', '', 'LES VUILLEMENOTS', 'B172', '25210', '25074', 'Bonnétage', '25', '', '', '250740000C0697', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '25902', '', ''], ['2019-73513', '2019-04-04', '000003', 'Vente', '22620', '', '', 'LES VUILLEMENOTS', 'B172', '25210', '25074', 'Bonnétage', '25', '', '', '250740000C0697', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '25902', '', ''], ['2019-73513', '2019-04-04', '000003', 'Vente', '22620', '', '', 'LES VUILLEMENOTS', 'B172', '25210', '25074', 'Bonnétage', '25', '', '', '250740000C0697', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'BR', 'futaies résineuses', 'PIN', 'Pins', '24879', '', ''], ['2019-73513', '2019-04-04', '000003', 'Vente', '22620', '', '', 'LES VUILLEMENOTS', 'B172', '25210', '25074', 'Bonnétage', '25', '', '', '250740000C0793', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '30718', '6.713855', '47.182763'], ['2019-73513', '2019-04-04', '000003', 'Vente', '22620', '', '', 'LES VUILLEMENOTS', 'B172', '25210', '25074', 'Bonnétage', '25', '', '', '250740000C0793', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '30718', '6.713855', '47.182763'], ['2019-73513', '2019-04-04', '000003', 'Vente', '22620', '', '', 'LES VUILLEMENOTS', 'B172', '25210', '25074', 'Bonnétage', '25', '', '', '250740000C0793', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'BR', 'futaies résineuses', 'PIN', 'Pins', '10136', '6.713855', '47.182763'], ['2019-73513', '2019-04-04', '000003', 'Vente', '22620', '', '', 'LES VUILLEMENOTS', 'B172', '25210', '25074', 'Bonnétage', '25', '', '', '250740000C0793', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '30719', '6.713855', '47.182763'], ['2019-73513', '2019-04-04', '000003', 'Vente', '22620', '', '', 'LES VUILLEMENOTS', 'B172', '25210', '25074', 'Bonnétage', '25', '', '', '250740000C0794', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'AB', 'terrains a bâtir', '', '', '294', '6.716944', '47.182867'], ['2019-73514', '2019-04-02', '000001', 'Vente', '35000', '12', '', 'RUE DU STADE', '0330', '25400', '25020', 'Arbouans', '25', '', '', '25020000AD0099', '', '', '2', '', '4', '', '', '', '', '', '', '', '2', '2', 'Appartement', '52', '2', '', '', '', '', '', '6.808901', '47.488554'], ['2019-73515', '2019-04-02', '000001', 'Vente', '15000', '10', '', 'RUE DU STADE', '0330', '25400', '25020', 'Arbouans', '25', '', '', '25020000AD0100', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '466', '6.809074', '47.488497'], ['2019-73516', '2019-04-12', '000001', 'Vente', '30000', '31', '', 'RUE DE ST HIPPOLYTE', '0180', '25190', '25393', 'Montécheroux', '25', '', '', '253930000B0503', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '118', '4', 'S', 'sols', '', '', '2025', '6.808748', '47.347671'], ['2019-73516', '2019-04-12', '000001', 'Vente', '30000', '', '', 'SOUS LA VIE DE CHAMESOL', 'B143', '25190', '25393', 'Montécheroux', '25', '', '', '25393000ZC0121', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'T', 'terres', '', '', '70', '6.808941', '47.347952'], ['2019-73517', '2019-04-19', '000001', 'Vente', '161700', '3', '', 'IMP DU BOIS NOUVEAU', '0083', '25400', '25031', 'Audincourt', '25', '', '', '25031000AL0151', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '72', '3', 'S', 'sols', '', '', '513', '6.848551', '47.490265'], ['2019-73518', '2019-04-25', '000001', 'Vente', '175000', '63', '', 'RUE DE GLAY', '0290', '25310', '25304', 'Hérimoncourt', '25', '', '', '25304000AH0228', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '81', '5', 'S', 'sols', '', '', '734', '6.883591', '47.429131'], ['2019-73519', '2019-05-06', '000001', 'Vente', '80000', '31', '', 'RUE DU MARECHAL LECLERC', '0120', '25450', '25193', 'Damprichard', '25', '', '', '25193000AE0080', '', '', '19', '57.78', '20', '', '21', '', '24', '', '', '', '4', '2', 'Appartement', '50', '4', '', '', '', '', '', '6.87933', '47.241583'], ['2019-73519', '2019-05-06', '000001', 'Vente', '80000', '31', '', 'RUE DU MARECHAL LECLERC', '0120', '25450', '25193', 'Damprichard', '25', '', '', '25193000AE0080', '', '', '22', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.87933', '47.241583'], ['2019-73519', '2019-05-06', '000001', 'Vente', '80000', '', '', 'RUE DU MARECHAL LECLERC', '0120', '25450', '25193', 'Damprichard', '25', '', '', '25193000AE0080', '', '', '23', '', '', '', '', '', '', '', '', '', '1', '', '', '', '', 'S', 'sols', '', '', '45', '6.87933', '47.241583'], ['2019-73520', '2019-05-06', '000001', 'Vente', '198', '', '', 'SUR LA COTE', 'B018', '25470', '25238', 'Fessevillers', '25', '', '', '25238000AB0080', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '33', '6.912824', '47.280116'], ['2019-73521', '2019-04-25', '000001', 'Vente', '165200', '15', '', 'LE MOUCHOT ET LA PALE', 'B038', '25750', '25008', 'Aibre', '25', '', '', '25008000ZA0087', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '175', '8', 'S', 'sols', '', '', '771', '6.69568', '47.55306'], ['2019-73521', '2019-04-25', '000001', 'Vente', '165200', '', '', 'LE MOUCHOT ET LA PALE', 'B038', '25750', '25008', 'Aibre', '25', '', '', '25008000ZA0088', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'T', 'terres', '', '', '966', '6.695923', '47.552988'], ['2019-73522', '2019-05-06', '000001', 'Vente', '130000', '2', '', 'RUE CUVIER', '0106', '25140', '25127', 'Charquemont', '25', '', '', '25127000AC0035', '', '', '35', '', '9', '', '', '', '', '', '', '', '2', '2', 'Appartement', '88', '3', '', '', '', '', '', '6.822577', '47.214035'], ['2019-73523', '2019-04-30', '000001', 'Vente', '27000', '5', '', 'RUE DE LA CITADELLE', '0440', '25200', '25388', 'Montbéliard', '25', '', '', '25388000AL0155', '', '', '7', '', '9', '16.6', '', '', '', '', '', '', '2', '2', 'Appartement', '16', '1', '', '', '', '', '', '6.791255', '47.510301'], ['2019-73524', '2019-04-19', '000001', 'Vente', '91500', '2', '', 'RUE DU BREUIL', '0060', '25490', '25011', 'Allenjoie', '25', '', '', '250110000B0446', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '48', '2', 'S', 'sols', '', '', '513', '6.897446', '47.530793'], ['2019-73525', '2019-04-18', '000001', 'Vente', '84900', '', '', 'CHAMPS MONTANTS', 'B006', '25420', '25170', 'Courcelles-lès-Montbéliard', '25', '', '', '25170000AB0535', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'AB', 'terrains a bâtir', '', '', '831', '6.779124', '47.503048'], ['2019-73526', '2019-05-03', '000001', 'Vente', '348000', '', '', 'VERGERS ENTRE LES DEUX BRO', 'B088', '25600', '25097', 'Brognard', '25', '', '', '25097000AI0180', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '71', '6.867196', '47.528837'], ['2019-73526', '2019-05-03', '000001', 'Vente', '348000', '10', '', 'RUE DES NOISETIERS', '0049', '25600', '25097', 'Brognard', '25', '', '', '25097000AI0187', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '139', '4', 'S', 'sols', '', '', '213', '6.867229', '47.528776'], ['2019-73526', '2019-05-03', '000001', 'Vente', '348000', '10', '', 'RUE DES NOISETIERS', '0049', '25600', '25097', 'Brognard', '25', '', '', '25097000AI0194', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '221', '6.867337', '47.528709'], ['2019-73527', '2019-04-19', '000001', 'Vente', '136000', '4', '', 'RUE DES ESSARTS', '0200', '25230', '25539', 'Seloncourt', '25', '', '', '25539000AL0243', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '90', '4', 'S', 'sols', '', '', '359', '6.874663', '47.453324'], ['2019-73527', '2019-04-19', '000001', 'Vente', '136000', '', '', 'COTEAU DE BERNE', 'B048', '25230', '25539', 'Seloncourt', '25', '', '', '25539000AL0569', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '90', '6.87486', '47.453368'], ['2019-73528', '2019-04-19', '000001', 'Vente', '18000', '15', '', 'RUE LOUIS PERGAUD', '0850', '25700', '25580', 'Valentigney', '25', '', '', '25580000BV0001', '', '', '60', '65.69', '77', '', '', '', '', '', '', '', '2', '2', 'Appartement', '63', '3', '', '', '', '', '', '6.822739', '47.479904'], ['2019-73529', '2019-04-18', '000001', 'Vente', '162700', '36', '', 'RUE DES VIGNES', '1500', '25400', '25230', 'Exincourt', '25', '', '', '25230000AA0279', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '184', '6.835651', '47.499451'], ['2019-73529', '2019-04-18', '000001', 'Vente', '162700', '36', '', 'RUE DES VIGNES', '1500', '25400', '25230', 'Exincourt', '25', '', '', '25230000AA0280', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '118', '6', 'S', 'sols', '', '', '327', '6.835553', '47.499412'], ['2019-73529', '2019-04-18', '000001', 'Vente', '162700', '36', '', 'LES CHENEES', 'B020', '25400', '25230', 'Exincourt', '25', '', '', '25230000AA0402', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '49', '6.835657', '47.499608'], ['2019-73529', '2019-04-18', '000001', 'Vente', '162700', '36', '', 'RUE DES VIGNES', '1500', '25400', '25230', 'Exincourt', '25', '', '', '25230000AA0404', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '71', '6.835524', '47.499605'], ['2019-73530', '2019-04-18', '000001', 'Vente', '78000', '7', '', 'RUE DE L YSER', '1060', '25400', '25031', 'Audincourt', '25', '', '', '25031000AY0359', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '61', '3', 'S', 'sols', '', '', '133', '6.845089', '47.477098'], ['2019-73530', '2019-04-18', '000001', 'Vente', '78000', '9', '', 'RUE DE L YSER', '1060', '25400', '25031', 'Audincourt', '25', '', '', '25031000AY0657', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '71', '6.845149', '47.477032'], ['2019-73531', '2019-04-25', '000001', 'Vente', '600', '', '', 'BRUYERES GRANDES PARTS', 'B019', '25550', '25048', 'Bavans', '25', '', '', '25048000AR0048', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'T', 'terres', '', '', '1718', '6.710698', '47.476874'], ['2019-73532', '2019-04-18', '000001', 'Vente', '124550', '43', '', 'RUE DE SELONCOURT', '0930', '25400', '25031', 'Audincourt', '25', '', '', '25031000AY0737', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '99', '4', 'S', 'sols', '', '', '225', '6.843529', '47.476326'], ['2019-73532', '2019-04-18', '000001', 'Vente', '124550', '43', '', 'RUE DE SELONCOURT', '0930', '25400', '25031', 'Audincourt', '25', '', '', '25031000AY0740', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '15', '6.843624', '47.476309'], ['2019-73533', '2019-04-26', '000001', 'Vente', '108500', '38', '', 'RUE DU VERNOIS', '1180', '25700', '25580', 'Valentigney', '25', '', '', '25580000BR0114', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '100', '3', 'S', 'sols', '', '', '506', '6.831791', '47.460516'], ['2019-73534', '2019-04-16', '000001', 'Vente', '156400', '42', '', 'AV DES MELEZES', '0277', '25200', '25284', 'Grand-Charmont', '25', '', '', '25284000AT0103', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '90', '4', 'S', 'sols', '', '', '579', '6.827085', '47.538779'], ['2019-73535', '2019-05-06', '000001', 'Vente', '4100', '', '', 'A LA GOULAIE', 'B080', '25230', '25586', 'Vandoncourt', '25', '', '', '255860000A0586', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'BS', 'taillis sous futaie', '', '', '2514', '6.919854', '47.464068'], ['2019-73535', '2019-05-06', '000001', 'Vente', '4100', '', '', 'A LA GOULAIE', 'B080', '25230', '25586', 'Vandoncourt', '25', '', '', '255860000A0587', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '1237', '6.920561', '47.46437'], ['2019-73535', '2019-05-06', '000001', 'Vente', '4100', '', '', 'A LA GOULAIE', 'B080', '25230', '25586', 'Vandoncourt', '25', '', '', '255860000A0588', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'BS', 'taillis sous futaie', '', '', '2259', '6.921259', '47.464421'], ['2019-73535', '2019-05-06', '000001', 'Vente', '4100', '', '', 'A LA GOULAIE', 'B080', '25230', '25586', 'Vandoncourt', '25', '', '', '255860000A0596', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'BS', 'taillis sous futaie', '', '', '910', '6.921511', '47.46361'], ['2019-73535', '2019-05-06', '000001', 'Vente', '4100', '', '', 'A LA GOULAIE', 'B080', '25230', '25586', 'Vandoncourt', '25', '', '', '255860000A0597', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'BS', 'taillis sous futaie', '', '', '4400', '6.920854', '47.46331'], ['2019-73535', '2019-05-06', '000001', 'Vente', '4100', '', '', 'A LA GOULAIE', 'B080', '25230', '25586', 'Vandoncourt', '25', '', '', '255860000A0598', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'BS', 'taillis sous futaie', '', '', '2470', '6.921016', '47.46313'], ['2019-73535', '2019-05-06', '000001', 'Vente', '4100', '', '', 'LES NEUFS PRES', 'B093', '25230', '25586', 'Vandoncourt', '25', '', '', '255860000B0671', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'BS', 'taillis sous futaie', '', '', '2575', '6.924326', '47.450593'], ['2019-73536', '2019-04-18', '000001', 'Vente', '159000', '9', '', 'RUE DE VANDONCOURT', '0460', '25310', '25304', 'Hérimoncourt', '25', '', '', '25304000AM1068', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '136', '7', 'S', 'sols', '', '', '559', '6.884317', '47.441236'], ['2019-73537', '2019-04-29', '000001', 'Vente', '35000', '18', '', 'AV DU MARECHAL JOFFRE', '1250', '25200', '25388', 'Montbéliard', '25', '', '', '25388000AY0165', '', '', '8', '', '9', '', '', '', '', '', '', '', '2', '4', 'Local industriel. commercial ou assimilé', '74', '0', '', '', '', '', '', '6.805103', '47.510888'], ['2019-73538', '2019-04-26', '000001', 'Vente', '80000', '9', '', 'RUE VIETTE', '1200', '25700', '25580', 'Valentigney', '25', '', '', '25580000BK0067', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '66', '4', 'S', 'sols', '', '', '371', '6.834042', '47.461473'], ['2019-73539', '2019-05-13', '000001', 'Vente', '74000', '1', '', 'RUE DU CANAL', '0040', '25420', '25170', 'Courcelles-lès-Montbéliard', '25', '', '', '25170000AE0017', '', '', '3', '75.03', '4', '56.9', '', '', '', '', '', '', '2', '2', 'Appartement', '101', '4', '', '', '', '', '', '6.774951', '47.501783'], ['2019-73540', '2019-04-29', '000001', 'Vente', '15000', '', '', 'LE LAITEY', 'B063', '25210', '25351', 'Le Luhier', '25', '', '', '253510000A0017', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'BR', 'futaies résineuses', '', '', '17430', '6.702228', '47.172886'], ['2019-73541', '2019-05-15', '000001', 'Vente', '98500', '46', '', 'RUE DES SOURCES', '0745', '25600', '25614', 'Vieux-Charmont', '25', '', '', '25614000AD0057', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '106', '5', 'J', 'jardins', '', '', '765', '6.832793', '47.524749'], ['2019-73542', '2019-05-24', '000001', 'Vente', '61000', '28', '', 'RUE DU GENERAL LECLERC', '0810', '25200', '25388', 'Montbéliard', '25', '', '', '25388000AM0032', '', '', '26', '', '', '', '', '', '', '', '', '', '1', '2', 'Appartement', '38', '2', '', '', '', '', '', '6.797759', '47.513379'], ['2019-73542', '2019-05-24', '000001', 'Vente', '61000', '28', '', 'RUE DU GENERAL LECLERC', '0810', '25200', '25388', 'Montbéliard', '25', '', '', '25388000AM0032', '', '', '19', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.797759', '47.513379'], ['2019-73543', '2019-05-03', '000001', 'Vente', '41000', '90', '', 'GR GRANDE RUE', '0455', '25400', '25031', 'Audincourt', '25', '', '', '25031000AZ0174', '', '', '5', '', '8', '', '', '', '', '', '', '', '2', '2', 'Appartement', '69', '3', '', '', '', '', '', '6.839953', '47.479828'], ['2019-73544', '2019-05-02', '000001', 'Vente', '15000', '9', '', 'RUE DES BRESSES', '0070', '25460', '25228', 'Étupes', '25', '', '', '25228000AD0209', '', '', '', '', '', '', '', '', '', '', '', '', '0', '3', 'Dépendance', '', '0', 'S', 'sols', '', '', '40', '6.865374', '47.504337'], ['2019-73544', '2019-05-02', '000001', 'Vente', '15000', '9', '', 'RUE DES BRESSES', '0070', '25460', '25228', 'Étupes', '25', '', '', '25228000AD0209', '', '', '', '', '', '', '', '', '', '', '', '', '0', '3', 'Dépendance', '', '0', 'VE', 'vergers', '', '', '345', '6.865374', '47.504337'], ['2019-73545', '2019-05-02', '000001', 'Vente', '46000', '42', '', 'RUE CLAUDE DEBUSSY', '0445', '25200', '25388', 'Montbéliard', '25', '', '', '25388000CL0052', '', '', '44', '79.07', '', '', '', '', '', '', '', '', '1', '2', 'Appartement', '76', '4', '', '', '', '', '', '6.795348', '47.49822'], ['2019-73546', '2019-04-30', '000001', 'Vente', '65000', '33', '', 'RUE DE LA COTE', '0170', '25310', '25304', 'Hérimoncourt', '25', '', '', '25304000AM0241', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '127', '5', 'S', 'sols', '', '', '926', '6.87982', '47.441557'], ['2019-73546', '2019-04-30', '000001', 'Vente', '65000', '', '', 'LA COTE', 'B029', '25310', '25304', 'Hérimoncourt', '25', '', '', '25304000AM0242', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'BT', 'taillis simples', '', '', '1738', '6.87999', '47.441797'], ['2019-73547', '2019-05-28', '000001', 'Vente', '400000', '1', '', 'RUE GASTON PRETOT', '1556', '25200', '25388', 'Montbéliard', '25', '', '', '25388000BI0268', '', '', '6', '213.08', '', '', '', '', '', '', '', '', '1', '4', 'Local industriel. commercial ou assimilé', '213', '0', '', '', '', '', '', '6.813315', '47.498574'], ['2019-73548', '2019-05-29', '000001', 'Vente', '38000', '17', '', 'RUE HELENE BOUCHER', '0935', '25200', '25388', 'Montbéliard', '25', '', '', '25388000BO0026', '', '', '131', '75.88', '56', '', '', '', '', '', '', '', '2', '2', 'Appartement', '76', '4', '', '', '', '', '', '6.791772', '47.499209'], ['2019-73548', '2019-05-29', '000001', 'Vente', '38000', '17', '', 'RUE HELENE BOUCHER', '0935', '25200', '25388', 'Montbéliard', '25', '', '', '25388000BO0026', '', '', '60', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.791772', '47.499209'], ['2019-73549', '2019-05-16', '000001', 'Vente', '55000', '18', '', 'RUE DU GENERAL LECLERC', '0810', '25200', '25388', 'Montbéliard', '25', '', '', '25388000AM0134', '', '', '17', '', '63', '', '', '', '', '', '', '', '2', '2', 'Appartement', '94', '5', '', '', '', '', '', '6.798026', '47.51193'], ['2019-73549', '2019-05-16', '000001', 'Vente', '55000', '18', '', 'RUE DU GENERAL LECLERC', '0810', '25200', '25388', 'Montbéliard', '25', '', '', '25388000AM0134', '', '', '208', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.798026', '47.51193'], ['2019-73550', '2019-05-24', '000001', "Vente en l'état futur d'achèvement", '195000', '3', '', 'RUE DU MONTANOT PROLONGEE', '0641', '25400', '25031', 'Audincourt', '25', '', '', '25031000AC0333', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '92', '4', 'S', 'sols', '', '', '708', '6.826166', '47.490939'], ['2019-73551', '2019-05-17', '000001', 'Vente', '158000', '8', 'B', 'RUE DES GRANDS JARDINS', '0870', '25200', '25388', 'Montbéliard', '25', '', '', '25388000AY0311', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '25', '1', 'S', 'sols', '', '', '820', '6.803489', '47.510739'], ['2019-73551', '2019-05-17', '000001', 'Vente', '158000', '8', 'B', 'RUE DES GRANDS JARDINS', '0870', '25200', '25388', 'Montbéliard', '25', '', '', '25388000AY0311', '', '', '', '', '', '', '', '', '', '', '', '', '0', '2', 'Appartement', '122', '5', 'S', 'sols', '', '', '820', '6.803489', '47.510739'], ['2019-73551', '2019-05-17', '000001', 'Vente', '158000', '8', 'B', 'RUE DES GRANDS JARDINS', '0870', '25200', '25388', 'Montbéliard', '25', '', '', '25388000AY0311', '', '', '', '', '', '', '', '', '', '', '', '', '0', '2', 'Appartement', '25', '1', 'S', 'sols', '', '', '820', '6.803489', '47.510739'], ['2019-73551', '2019-05-17', '000001', 'Vente', '158000', '8', 'B', 'RUE DES GRANDS JARDINS', '0870', '25200', '25388', 'Montbéliard', '25', '', '', '25388000AY0311', '', '', '', '', '', '', '', '', '', '', '', '', '0', '2', 'Appartement', '60', '2', 'S', 'sols', '', '', '820', '6.803489', '47.510739'], ['2019-73552', '2019-06-05', '000001', 'Vente', '310000', '85', '1', 'GR GRANDE RUE', '0720', '25550', '25048', 'Bavans', '25', '', '', '25048000AK0387', '', '', '', '', '', '', '', '', '', '', '', '', '0', '4', 'Local industriel. commercial ou assimilé', '640', '0', 'S', 'sols', '', '', '3212', '6.747077', '47.481604'], ['2019-73552', '2019-06-05', '000001', 'Vente', '310000', '85', '1', 'GR GRANDE RUE', '0720', '25550', '25048', 'Bavans', '25', '', '', '25048000AK0387', '', '', '', '', '', '', '', '', '', '', '', '', '0', '4', 'Local industriel. commercial ou assimilé', '640', '0', 'T', 'terres', '', '', '2527', '6.747077', '47.481604'], ['2019-73553', '2019-05-29', '000001', 'Vente', '105000', '8', '', 'RUE VALENTINE BESSON', '0456', '25310', '25304', 'Hérimoncourt', '25', '', '', '25304000AK0130', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '59', '3', 'S', 'sols', '', '', '736', '6.893024', '47.433489'], ['2019-73554', '2019-05-24', '000001', 'Vente', '233000', '1', 'B', 'RUE DE LA GARE', '0220', '25490', '25237', 'Fesches-le-Châtel', '25', '', '', '25237000AD0407', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '185', '6', 'S', 'sols', '', '', '471', '6.913728', '47.522379'], ['2019-73554', '2019-05-24', '000001', 'Vente', '233000', '', '', 'RUE DU HUIT MAI', '0243', '25490', '25237', 'Fesches-le-Châtel', '25', '', '', '25237000AD1121', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '97', '6.913563', '47.522288'], ['2019-73555', '2019-05-13', '000001', 'Vente', '29000', '45', '', 'RUE D AUDINCOURT', '0020', '25230', '25539', 'Seloncourt', '25', '', '', '25539000AB0471', '', '', '199', '81.55', '209', '', '', '', '', '', '', '', '2', '2', 'Appartement', '84', '5', '', '', '', '', '', '6.853653', '47.465963'], ['2019-73556', '2019-06-05', '000001', 'Vente', '287000', '10', '', 'RUE PRINCIPALE', '0040', '25120', '25091', 'Les Bréseux', '25', '', '', '25091000AI0599', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '142', '5', 'S', 'sols', '', '', '502', '6.812906', '47.274377'], ['2019-73557', '2019-05-29', '000001', 'Vente', '177500', '1', 'B', 'RUE PAUL ELIE DUBOIS', '0140', '25260', '25524', 'Saint-Maurice-Colombier', '25', '', '', '255241580B0993', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '107', '5', 'S', 'sols', '', '', '1000', '6.631317', '47.437162'], ['2019-73557', '2019-05-29', '000001', 'Vente', '177500', '', '', 'DERRIERE LA CHAFRERIE', 'B097', '25260', '25524', 'Saint-Maurice-Colombier', '25', '', '', '25524158ZM0004', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'J', 'jardins', '', '', '320', '6.631643', '47.437216'], ['2019-73558', '2019-06-06', '000001', 'Vente', '55000', '', '', 'LE VILLAGE', 'B094', '25310', '25452', 'Pierrefontaine-lès-Blamont', '25', '', '', '254520000A0532', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '599', '6.841734', '47.375194'], ['2019-73558', '2019-06-06', '000001', 'Vente', '55000', '', '', 'LES COMBOTTES', 'B024', '25310', '25452', 'Pierrefontaine-lès-Blamont', '25', '', '', '25452000ZB0085', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '489', '6.841879', '47.37526'], ['2019-73559', '2019-06-03', '000001', 'Vente', '109800', '', '', 'MONT DE LA CHAPELLE', 'B071', '25120', '25392', 'Mont-de-Vougney', '25', '', '', '25392000AC0009', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'T', 'terres', '', '', '704', '6.732579', '47.246082'], ['2019-73559', '2019-06-03', '000001', 'Vente', '109800', '', '', 'MONT DE LA CHAPELLE', 'B071', '25120', '25392', 'Mont-de-Vougney', '25', '', '', '25392000AC0045', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'VE', 'vergers', '', '', '1283', '6.732461', '47.246169'], ['2019-73559', '2019-06-03', '000001', 'Vente', '109800', '7', '', "RUE DE L'EGLISE", '0020', '25120', '25392', 'Mont-de-Vougney', '25', '', '', '25392000AC0046', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '110', '2', 'S', 'sols', '', '', '596', '6.732681', '47.24602'], ['2019-73560', '2019-06-05', '000001', 'Vente', '3930', '', '', 'A COUR', 'B025', '25380', '25173', 'Cour-Saint-Maurice', '25', '', '', '25173000AB0034', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '1000', '6.703348', '47.261878'], ['2019-73560', '2019-06-05', '000001', 'Vente', '3930', '', '', 'A COUR', 'B025', '25380', '25173', 'Cour-Saint-Maurice', '25', '', '', '25173000AB0034', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '1342', '6.703348', '47.261878'], ['2019-73560', '2019-06-05', '000001', 'Vente', '3930', '', '', 'A COUR', 'B025', '25380', '25173', 'Cour-Saint-Maurice', '25', '', '', '25173000AB0109', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'T', 'terres', '', '', '10758', '6.704307', '47.262313'], ['2019-73561', '2019-06-07', '000001', 'Vente', '138600', '40', '', 'RUE DES GRANDS CHAMPS', '0140', '25260', '25224', 'Étouvans', '25', '', '', '252240000A0639', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '90', '3', 'S', 'sols', '', '', '611', '6.711512', '47.461254'], ['2019-73561', '2019-06-07', '000001', 'Vente', '138600', '40', '', 'RUE DES GRANDS CHAMPS', '0140', '25260', '25224', 'Étouvans', '25', '', '', '252240000A0639', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '90', '3', 'P', 'prés', '', '', '740', '6.711512', '47.461254'], ['2019-73562', '2019-06-07', '000001', 'Vente', '86970', '1', '', 'RUE DES MAILLEUX', '0038', '25380', '25125', 'Charmoille', '25', '', '', '25125000AC0184', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '79', '2', 'S', 'sols', '', '', '570', '6.677172', '47.243403'], ['2019-73562', '2019-06-07', '000001', 'Vente', '86970', '', '', 'RONDAGE', 'B053', '25380', '25125', 'Charmoille', '25', '', '', '251250000D0296', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'T', 'terres', '', '', '607', '6.677348', '47.243329'], ['2019-73563', '2019-06-18', '000001', 'Vente', '9000', '', '', 'CHENE FONTAINE', 'B055', '25550', '25048', 'Bavans', '25', '', '', '25048000AR0146', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'T', 'terres', '', '', '606', '6.71297', '47.473383'], ['2019-73564', '2019-06-06', '000001', 'Vente', '31000', '8', '', 'PL DORIAN', '0600', '25200', '25388', 'Montbéliard', '25', '', '', '25388000BY0279', '', '', '10', '', '', '', '', '', '', '', '', '', '1', '2', 'Appartement', '25', '2', '', '', '', '', '', '6.795879', '47.50963'], ['2019-73565', '2019-06-13', '000001', 'Vente', '44500', '46', 'D', 'RUE DU MONT BART', '1300', '25200', '25388', 'Montbéliard', '25', '', '', '25388000BT0147', '', '', '130', '', '150', '', '', '', '', '', '', '', '2', '2', 'Appartement', '55', '3', '', '', '', '', '', '6.786268', '47.506845'], ['2019-73566', '2019-06-20', '000001', 'Vente', '86750', '7', '', 'RUE EMILE OUSTALET', '1358', '25200', '25388', 'Montbéliard', '25', '', '', '25388000AR0240', '', '', '153', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.804281', '47.518294'], ['2019-73566', '2019-06-20', '000001', 'Vente', '86750', '7', '', 'RUE EMILE OUSTALET', '1358', '25200', '25388', 'Montbéliard', '25', '', '', '25388000AR0240', '', '', '103', '', '', '', '', '', '', '', '', '', '1', '2', 'Appartement', '59', '3', '', '', '', '', '', '6.804281', '47.518294'], ['2019-73567', '2019-06-27', '000001', 'Vente', '154000', '32', '', 'RUE DU PRIEURE', '0037', '25380', '25588', 'Vaucluse', '25', '', '', '25588000AB0071', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '75', '3', 'S', 'sols', '', '', '1000', '6.689626', '47.257118'], ['2019-73568', '2019-06-27', '000001', 'Vente', '35000', '11', '', 'RUE SAINTE ANNE', '0920', '25120', '25356', 'Maîche', '25', '', '', '25356000AC0036', '', '', '6', '33.05', '', '', '', '', '', '', '', '', '1', '2', 'Appartement', '29', '1', '', '', '', '', '', '6.80645', '47.250824'], ['2019-73569', '2019-06-27', '000001', 'Vente', '90000', '5033', '', 'RTE DE BIAUFOND', '0009', '25140', '25255', 'Fournet-Blancheroche', '25', '', '', '252550000A0331', '', '', '102', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.838559', '47.178531'], ['2019-73569', '2019-06-27', '000001', 'Vente', '90000', '5033', '', 'RTE DE BIAUFOND', '0009', '25140', '25255', 'Fournet-Blancheroche', '25', '', '', '252550000A0331', '', '', '4', '', '6', '44', '', '', '', '', '', '', '2', '2', 'Appartement', '40', '2', '', '', '', '', '', '6.838559', '47.178531'], ['2019-73570', '2019-06-07', '000001', 'Vente', '167000', '1', '', 'RUE DES CURTILS', '0165', '25400', '25020', 'Arbouans', '25', '', '', '25020000AD0212', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '133', '4', 'S', 'sols', '', '', '844', '6.80516', '47.4896'], ['2019-73570', '2019-06-07', '000001', 'Vente', '167000', '', '', 'RUE DES CHAMPS DE PIERRES', '0060', '25400', '25020', 'Arbouans', '25', '', '', '25020000AD0213', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '858', '6.805814', '47.4896'], ['2019-73571', '2019-06-07', '000001', 'Vente', '147000', '1', '', 'RUE DES ANSANGES', '0012', '25350', '25367', 'Mandeure', '25', '', '', '25367000AD0510', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '118', '5', 'S', 'sols', '', '', '585', '6.815707', '47.446331'], ['2019-73571', '2019-06-07', '000001', 'Vente', '147000', '', '', 'AUX ANDANGES', 'B001', '25350', '25367', 'Mandeure', '25', '', '', '25367000AD0514', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '142', '6.815539', '47.446242'], ['2019-73572', '2019-06-07', '000001', 'Vente', '128190', '54', '', 'RUE SOUS LES VIGNES', '0970', '25400', '25031', 'Audincourt', '25', '', '', '25031000AT0053', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '75', '5', 'S', 'sols', '', '', '568', '6.853547', '47.471187'], ['2019-73573', '2019-06-13', '000001', 'Vente', '31500', '3', '', 'RUE DU BOIS BOURGEOIS', '0170', '25200', '25388', 'Montbéliard', '25', '', '', '25388000AL0462', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '51', '3', 'S', 'sols', '', '', '75', '6.796445', '47.51367'], ['2019-73573', '2019-06-13', '000001', 'Vente', '31500', '1', '', 'RUE DU BOIS BOURGEOIS', '0170', '25200', '25388', 'Montbéliard', '25', '', '', '25388000AL0463', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '101', '6.7963', '47.513617'], ['2019-73574', '2019-06-28', '000001', 'Vente', '77390', '2', '', 'RUE BUFFON', '0070', '25200', '25057', 'Bethoncourt', '25', '', '', '25057000AK0006', '', '', '17', '', '20', '', '', '', '', '', '', '', '2', '2', 'Appartement', '79', '4', '', '', '', '', '', '6.805575', '47.533519'], ['2019-73574', '2019-06-28', '000001', 'Vente', '77390', '2', '', 'RUE BUFFON', '0070', '25200', '25057', 'Bethoncourt', '25', '', '', '25057000AK0006', '', '', '62', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.805575', '47.533519'], ['2019-73575', '2019-06-28', '000001', 'Vente', '164000', '6', '', 'RUE DES POMMEROTS', '0175', '25310', '25063', 'Blamont', '25', '', '', '250630000D0929', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '76', '4', 'S', 'sols', '', '', '793', '6.844686', '47.384942'], ['2019-73576', '2019-06-18', '000001', 'Vente', '116476.58', '', '', 'CORNEE DE BREUIL', 'B045', '25260', '25350', 'Lougres', '25', '', '', '25350000AB0099', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '1765', '6.689448', '47.4712'], ['2019-73576', '2019-06-18', '000001', 'Vente', '116476.58', '', '', 'CORNEE DE BREUIL', 'B045', '25260', '25350', 'Lougres', '25', '', '', '25350000AB0102', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '1705', '6.689632', '47.470865'], ['2019-73576', '2019-06-18', '000001', 'Vente', '116476.58', '10', '', 'RUE DE MONTBELIARD', '0160', '25260', '25350', 'Lougres', '25', '', '', '25350000AB0477', '', '', '', '', '', '', '', '', '', '', '', '', '0', '3', 'Dépendance', '', '0', 'S', 'sols', '', '', '958', '6.689107', '47.471361'], ['2019-73576', '2019-06-18', '000001', 'Vente', '116476.58', '10', '', 'RUE DE MONTBELIARD', '0160', '25260', '25350', 'Lougres', '25', '', '', '25350000AB0477', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '150', '6', 'S', 'sols', '', '', '958', '6.689107', '47.471361'], ['2019-73577', '2019-06-27', '000001', 'Vente', '100000', '', '', 'RUE DE LA LIBERTE', '0360', '25200', '25057', 'Bethoncourt', '25', '', '', '25057000AP0349', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '1733', '6.789253', '47.529948'], ['2019-73577', '2019-06-27', '000001', 'Vente', '100000', '', '', 'RUE DE LA LIBERTE', '0360', '25200', '25057', 'Bethoncourt', '25', '', '', '25057000AP0352', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '759', '6.789779', '47.530032'], ['2019-73578', '2019-04-30', '000001', 'Vente', '118500', '12', '', 'RUE COTEAU CLERC', '0160', '25230', '25539', 'Seloncourt', '25', '', '', '25539000AB0285', '', '', '93', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.857073', '47.467359'], ['2019-73578', '2019-04-30', '000001', 'Vente', '118500', '12', '', 'RUE COTEAU CLERC', '0160', '25230', '25539', 'Seloncourt', '25', '', '', '25539000AB0285', '', '', '121', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.857073', '47.467359'], ['2019-73578', '2019-04-30', '000001', 'Vente', '118500', '12', '', 'RUE COTEAU CLERC', '0160', '25230', '25539', 'Seloncourt', '25', '', '', '25539000AB0285', '', '', '57', '', '97', '75.64', '', '', '', '', '', '', '2', '2', 'Appartement', '70', '3', '', '', '', '', '', '6.857073', '47.467359'], ['2019-73579', '2019-06-27', '000001', 'Vente', '199500', '11', '', 'RUE DU STADE', '0050', '25120', '25108', "Cernay-l'Église", '25', '', '', '25108000AB0337', '', '', '1', '', '4', '', '', '', '', '', '', '', '2', '2', 'Appartement', '116', '3', '', '', '', '', '', '6.831483', '47.254732'], ['2019-73579', '2019-06-27', '000001', 'Vente', '199500', '11', '', 'RUE DU STADE', '0050', '25120', '25108', "Cernay-l'Église", '25', '', '', '25108000AB0337', '', '', '4', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.831483', '47.254732'], ['2019-73580', '2019-06-24', '000001', 'Vente', '3000', '12', '', 'RUE COTEAU CLERC', '0160', '25230', '25539', 'Seloncourt', '25', '', '', '25539000AB0285', '', '', '112', '', '', '', '', '', '', '', '', '', '1', '3', 'Dépendance', '', '0', '', '', '', '', '', '6.857073', '47.467359'], ['2019-73581', '2019-06-27', '000001', 'Vente', '118000', '3', '', 'IMP COROT', '0145', '25230', '25539', 'Seloncourt', '25', '', '', '25539000AS0224', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '88', '4', 'S', 'sols', '', '', '613', '6.850075', '47.462633'], ['2019-73582', '2019-06-18', '000001', 'Vente', '83000', '', '', 'CORNEE DE BREUIL', 'B045', '25260', '25350', 'Lougres', '25', '', '', '25350000AB0099', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '1765', '6.689448', '47.4712'], ['2019-73582', '2019-06-18', '000001', 'Vente', '83000', '', '', 'CORNEE DE BREUIL', 'B045', '25260', '25350', 'Lougres', '25', '', '', '25350000AB0102', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'P', 'prés', '', '', '1705', '6.689632', '47.470865'], ['2019-73582', '2019-06-18', '000001', 'Vente', '83000', '10', '', 'RUE DE MONTBELIARD', '0160', '25260', '25350', 'Lougres', '25', '', '', '25350000AB0477', '', '', '', '', '', '', '', '', '', '', '', '', '0', '3', 'Dépendance', '', '0', 'S', 'sols', '', '', '958', '6.689107', '47.471361'], ['2019-73582', '2019-06-18', '000001', 'Vente', '83000', '10', '', 'RUE DE MONTBELIARD', '0160', '25260', '25350', 'Lougres', '25', '', '', '25350000AB0477', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '150', '6', 'S', 'sols', '', '', '958', '6.689107', '47.471361'], ['2019-73583', '2019-06-21', '000001', 'Vente', '162500', '3', '', 'CHE DE TROP EPINES', '0170', '25750', '25198', 'Désandans', '25', '', '', '25198000AC0112', '', '', '', '', '', '', '', '', '', '', '', '', '0', '1', 'Maison', '130', '6', 'S', 'sols', '', '', '757', '6.67567', '47.531202'], ['2019-73583', '2019-06-21', '000001', 'Vente', '162500', '', '', 'AU MEURGELOT', 'B074', '25750', '25198', 'Désandans', '25', '', '', '25198000AC0113', '', '', '', '', '', '', '', '', '', '', '', '', '0', '', '', '', '', 'S', 'sols', '', '', '283', '6.675801', '47.531045'], ['2019-73584', '2019-06-27', '000001', 'Vente', '18285.7', '9001', '', 'RUE DE GRANDVAUX', '0023', '25250', '25059', 'Beutal', '25', '', '', '250590000V0030', '', '', '', '', '', '', '', '', '', '', '', '', '0', '4', 'Local industriel. commercial ou assimilé', '600', '0', 'T', 'terres', '', '', '617', '6.639785', '47.46935'], ['2019-73584', '2019-06-27', '000001', 'Vente', '18285.7', '9001', '', 'RUE DE GRANDVAUX', '0023', '25250', '25059', 'Beutal', '25', '', '', '250590000V0030', '', '', '', '', '', '', '', '', '', '', '', '', '0', '4', 'Local industriel. commercial ou assimilé', '600', '0', 'S', 'sols', '', '', '677', '6.639785', '47.46935']]
<class 'list'>
import csv
with open("./data/25.csv") as doubs:
doubs_dict = csv.DictReader(doubs)
data = [ligne for ligne in doubs_dict]
print(data)
print(type(data))
[OrderedDict([('id_mutation', '2019-73036'), ('date_mutation', '2019-02-25'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '200000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'AU VILLAGE'), ('adresse_code_voie', 'B037'), ('code_postal', '25640'), ('code_commune', '25490'), ('nom_commune', 'Rigney'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25490000ZK0354'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '2260'), ('longitude', '6.178685'), ('latitude', '47.388526')]), OrderedDict([('id_mutation', '2019-73036'), ('date_mutation', '2019-02-25'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '200000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'AU VILLAGE'), ('adresse_code_voie', 'B037'), ('code_postal', '25640'), ('code_commune', '25490'), ('nom_commune', 'Rigney'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25490000ZK0354'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'P'), ('nature_culture', 'prés'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '2792'), ('longitude', '6.178685'), ('latitude', '47.388526')]), OrderedDict([('id_mutation', '2019-73036'), ('date_mutation', '2019-02-25'), ('numero_disposition', '000002'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '200000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'AU VILLAGE'), ('adresse_code_voie', 'B037'), ('code_postal', '25640'), ('code_commune', '25490'), ('nom_commune', 'Rigney'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25490000ZK0354'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '2260'), ('longitude', '6.178685'), ('latitude', '47.388526')]), OrderedDict([('id_mutation', '2019-73036'), ('date_mutation', '2019-02-25'), ('numero_disposition', '000002'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '200000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'AU VILLAGE'), ('adresse_code_voie', 'B037'), ('code_postal', '25640'), ('code_commune', '25490'), ('nom_commune', 'Rigney'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25490000ZK0354'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'P'), ('nature_culture', 'prés'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '2792'), ('longitude', '6.178685'), ('latitude', '47.388526')]), OrderedDict([('id_mutation', '2019-73037'), ('date_mutation', '2019-03-09'), ('numero_disposition', '000002'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '277450'), ('adresse_numero', '2'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'CHE DES ESSARTS'), ('adresse_code_voie', '1890'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000OW0382'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '284'), ('longitude', '6.010203'), ('latitude', '47.268524')]), OrderedDict([('id_mutation', '2019-73037'), ('date_mutation', '2019-03-09'), ('numero_disposition', '000002'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '277450'), ('adresse_numero', '2'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'CHE DES ESSARTS'), ('adresse_code_voie', '1890'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000OW0383'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '24'), ('longitude', '6.010258'), ('latitude', '47.268593')]), OrderedDict([('id_mutation', '2019-73037'), ('date_mutation', '2019-03-09'), ('numero_disposition', '000002'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '277450'), ('adresse_numero', '2'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'CHE DES ESSARTS'), ('adresse_code_voie', '1890'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000OW0384'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.010475'), ('latitude', '47.268349')]), OrderedDict([('id_mutation', '2019-73038'), ('date_mutation', '2019-03-09'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '76250'), ('adresse_numero', '2'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'CHE DES ESSARTS'), ('adresse_code_voie', '1890'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000OW0381'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '139'), ('nombre_pieces_principales', '5'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '126'), ('longitude', '6.010398'), ('latitude', '47.268616')]), OrderedDict([('id_mutation', '2019-73039'), ('date_mutation', '2019-03-25'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '251650'), ('adresse_numero', '5123'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'GRANGES DU CHAMP DU FOURNE'), ('adresse_code_voie', 'B059'), ('code_postal', '25440'), ('code_commune', '25109'), ('nom_commune', 'Cessey'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25109000AC0169'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '166'), ('nombre_pieces_principales', '7'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '800'), ('longitude', '5.935817'), ('latitude', '47.128046')]), OrderedDict([('id_mutation', '2019-73039'), ('date_mutation', '2019-03-25'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '251650'), ('adresse_numero', '5123'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'GRANGES DU CHAMP DU FOURNE'), ('adresse_code_voie', 'B059'), ('code_postal', '25440'), ('code_commune', '25109'), ('nom_commune', 'Cessey'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25109000AC0169'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '166'), ('nombre_pieces_principales', '7'), ('code_nature_culture', 'AG'), ('nature_culture', "terrains d'agrément"), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '852'), ('longitude', '5.935817'), ('latitude', '47.128046')]), OrderedDict([('id_mutation', '2019-73040'), ('date_mutation', '2019-04-01'), ('numero_disposition', '000001'), ('nature_mutation', "Vente en l'état futur d'achèvement"), ('valeur_fonciere', '205600'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'A PRAND'), ('adresse_code_voie', 'B107'), ('code_postal', '25480'), ('code_commune', '25454'), ('nom_commune', 'Pirey'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25454000AH0259'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '22'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '5.965378'), ('latitude', '47.258764')]), OrderedDict([('id_mutation', '2019-73040'), ('date_mutation', '2019-04-01'), ('numero_disposition', '000001'), ('nature_mutation', "Vente en l'état futur d'achèvement"), ('valeur_fonciere', '205600'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'A PRAND'), ('adresse_code_voie', 'B107'), ('code_postal', '25480'), ('code_commune', '25454'), ('nom_commune', 'Pirey'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25454000AH0259'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '20'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '5.965378'), ('latitude', '47.258764')]), OrderedDict([('id_mutation', '2019-73041'), ('date_mutation', '2019-03-11'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '601176'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'SOUS LES TILLEROYES'), ('adresse_code_voie', 'B267'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000MW0399'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'P'), ('nature_culture', 'prés'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '572'), ('longitude', '5.97357'), ('latitude', '47.235445')]), OrderedDict([('id_mutation', '2019-73041'), ('date_mutation', '2019-03-11'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '601176'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'CHE DU SANATORIUM'), ('adresse_code_voie', '4690'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000MW0410'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'P'), ('nature_culture', 'prés'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '385'), ('longitude', '5.972884'), ('latitude', '47.235189')]), OrderedDict([('id_mutation', '2019-73041'), ('date_mutation', '2019-03-11'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '601176'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'SOUS LES TILLEROYES'), ('adresse_code_voie', 'B267'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000MW0415'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'P'), ('nature_culture', 'prés'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '603'), ('longitude', '5.973229'), ('latitude', '47.235323')]), OrderedDict([('id_mutation', '2019-73041'), ('date_mutation', '2019-03-11'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '601176'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'SOUS LES TILLEROYES'), ('adresse_code_voie', 'B267'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000MW0418'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'P'), ('nature_culture', 'prés'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '293'), ('longitude', '5.973384'), ('latitude', '47.235391')]), OrderedDict([('id_mutation', '2019-73041'), ('date_mutation', '2019-03-11'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '601176'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'SOUS LES TILLEROYES'), ('adresse_code_voie', 'B267'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000MW0421'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'P'), ('nature_culture', 'prés'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '219'), ('longitude', '5.972961'), ('latitude', '47.235275')]), OrderedDict([('id_mutation', '2019-73041'), ('date_mutation', '2019-03-11'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '601176'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'SOUS LES TILLEROYES'), ('adresse_code_voie', 'B267'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000MW0424'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'VE'), ('nature_culture', 'vergers'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '1293'), ('longitude', '5.97434'), ('latitude', '47.235558')]), OrderedDict([('id_mutation', '2019-73042'), ('date_mutation', '2019-03-12'), ('numero_disposition', '000001'), ('nature_mutation', "Vente en l'état futur d'achèvement"), ('valeur_fonciere', '370000'), ('adresse_numero', '19'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'CHE DU FORT BENOIT'), ('adresse_code_voie', '2060'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000CE0044'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '79'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.052679'), ('latitude', '47.259275')]), OrderedDict([('id_mutation', '2019-73042'), ('date_mutation', '2019-03-12'), ('numero_disposition', '000001'), ('nature_mutation', "Vente en l'état futur d'achèvement"), ('valeur_fonciere', '370000'), ('adresse_numero', '19'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'CHE DU FORT BENOIT'), ('adresse_code_voie', '2060'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000CE0044'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '56'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.052679'), ('latitude', '47.259275')]), OrderedDict([('id_mutation', '2019-73042'), ('date_mutation', '2019-03-12'), ('numero_disposition', '000001'), ('nature_mutation', "Vente en l'état futur d'achèvement"), ('valeur_fonciere', '370000'), ('adresse_numero', '19'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'CHE DU FORT BENOIT'), ('adresse_code_voie', '2060'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000CE0044'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '33'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.052679'), ('latitude', '47.259275')]), OrderedDict([('id_mutation', '2019-73042'), ('date_mutation', '2019-03-12'), ('numero_disposition', '000001'), ('nature_mutation', "Vente en l'état futur d'achèvement"), ('valeur_fonciere', '370000'), ('adresse_numero', '19'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'CHE DU FORT BENOIT'), ('adresse_code_voie', '2060'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000CE0044'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '74'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.052679'), ('latitude', '47.259275')]), OrderedDict([('id_mutation', '2019-73043'), ('date_mutation', '2019-03-27'), ('numero_disposition', '000001'), ('nature_mutation', "Vente en l'état futur d'achèvement"), ('valeur_fonciere', '285000'), ('adresse_numero', '2'), ('adresse_suffixe', 'B'), ('adresse_nom_voie', 'ALL DOCTEUR MAITRE'), ('adresse_code_voie', '1612'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000BI0332'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '23'), ('lot1_surface_carrez', ''), ('lot2_numero', '25'), ('lot2_surface_carrez', ''), ('lot3_numero', '7'), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '3'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '91'), ('nombre_pieces_principales', '4'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.020371'), ('latitude', '47.255286')]), OrderedDict([('id_mutation', '2019-73044'), ('date_mutation', '2019-04-08'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '86000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'LES ARDOTS'), ('adresse_code_voie', 'B001'), ('code_postal', '25870'), ('code_commune', '25265'), ('nom_commune', 'Geneuille'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25265000AD0605'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'AB'), ('nature_culture', 'terrains a bâtir'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '913'), ('longitude', '5.96775'), ('latitude', '47.322781')]), OrderedDict([('id_mutation', '2019-73045'), ('date_mutation', '2019-03-13'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '159000'), ('adresse_numero', '10'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE COURVOISIER'), ('adresse_code_voie', '0009'), ('code_postal', '25260'), ('code_commune', '25345'), ('nom_commune', 'Longevelle-sur-Doubs'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25345000ZD0221'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '121'), ('nombre_pieces_principales', '7'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '628'), ('longitude', '6.649923'), ('latitude', '47.454307')]), OrderedDict([('id_mutation', '2019-73045'), ('date_mutation', '2019-03-13'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '159000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'LES CORNEILLES'), ('adresse_code_voie', 'B072'), ('code_postal', '25260'), ('code_commune', '25345'), ('nom_commune', 'Longevelle-sur-Doubs'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25345000ZD0245'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'T'), ('nature_culture', 'terres'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '170'), ('longitude', '6.650082'), ('latitude', '47.454321')]), OrderedDict([('id_mutation', '2019-73046'), ('date_mutation', '2019-03-26'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '226000'), ('adresse_numero', '19'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE VOYE DE L ISLE'), ('adresse_code_voie', '0080'), ('code_postal', '25250'), ('code_commune', '25226'), ('nom_commune', 'Étrappe'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25226000ZA0080'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '125'), ('nombre_pieces_principales', '6'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '1016'), ('longitude', '6.578618'), ('latitude', '47.469529')]), OrderedDict([('id_mutation', '2019-73047'), ('date_mutation', '2019-04-05'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '78000'), ('adresse_numero', '28'), ('adresse_suffixe', 'A'), ('adresse_nom_voie', 'RUE DE VESOUL'), ('adresse_code_voie', '5160'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000BI0074'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '11'), ('lot1_surface_carrez', '63.62'), ('lot2_numero', '31'), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '2'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '63'), ('nombre_pieces_principales', '4'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.018239'), ('latitude', '47.251632')]), OrderedDict([('id_mutation', '2019-73048'), ('date_mutation', '2019-03-21'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '81500'), ('adresse_numero', '17'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'AV CHARLES SIFFERT'), ('adresse_code_voie', '1080'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000HY0007'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '12'), ('lot1_surface_carrez', '101.07'), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '4'), ('type_local', 'Local industriel. commercial ou assimilé'), ('surface_reelle_bati', '95'), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.015127'), ('latitude', '47.24185')]), OrderedDict([('id_mutation', '2019-73048'), ('date_mutation', '2019-03-21'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '81500'), ('adresse_numero', '17'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'AV CHARLES SIFFERT'), ('adresse_code_voie', '1080'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000HY0007'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '39'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.015127'), ('latitude', '47.24185')]), OrderedDict([('id_mutation', '2019-73049'), ('date_mutation', '2019-03-12'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '206000'), ('adresse_numero', '3'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DU DOCTEUR GIRARDOT'), ('adresse_code_voie', '1590'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000DZ0126'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '87'), ('nombre_pieces_principales', '4'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '468'), ('longitude', '5.996263'), ('latitude', '47.227774')]), OrderedDict([('id_mutation', '2019-73050'), ('date_mutation', '2019-03-15'), ('numero_disposition', '000001'), ('nature_mutation', "Vente en l'état futur d'achèvement"), ('valeur_fonciere', '66000'), ('adresse_numero', '20'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'AV FONTAINE ARGENT'), ('adresse_code_voie', '2030'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000CW0178'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '53'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.032833'), ('latitude', '47.244504')]), OrderedDict([('id_mutation', '2019-73050'), ('date_mutation', '2019-03-15'), ('numero_disposition', '000001'), ('nature_mutation', "Vente en l'état futur d'achèvement"), ('valeur_fonciere', '66000'), ('adresse_numero', '11'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE BEAUREGARD'), ('adresse_code_voie', '0380'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000CW0178'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '50'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.032833'), ('latitude', '47.244504')]), OrderedDict([('id_mutation', '2019-73050'), ('date_mutation', '2019-03-15'), ('numero_disposition', '000001'), ('nature_mutation', "Vente en l'état futur d'achèvement"), ('valeur_fonciere', '66000'), ('adresse_numero', '20'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'AV FONTAINE ARGENT'), ('adresse_code_voie', '2030'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000CW0178'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '52'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.032833'), ('latitude', '47.244504')]), OrderedDict([('id_mutation', '2019-73050'), ('date_mutation', '2019-03-15'), ('numero_disposition', '000001'), ('nature_mutation', "Vente en l'état futur d'achèvement"), ('valeur_fonciere', '66000'), ('adresse_numero', '11'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE BEAUREGARD'), ('adresse_code_voie', '0380'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000CW0178'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '13'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.032833'), ('latitude', '47.244504')]), OrderedDict([('id_mutation', '2019-73051'), ('date_mutation', '2019-03-29'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '79750'), ('adresse_numero', '11'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DU MUGUET'), ('adresse_code_voie', '3610'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000BY0068'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '4'), ('lot1_surface_carrez', '67.37'), ('lot2_numero', '5'), ('lot2_surface_carrez', ''), ('lot3_numero', '6'), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '3'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '68'), ('nombre_pieces_principales', '4'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.047337'), ('latitude', '47.264985')]), OrderedDict([('id_mutation', '2019-73052'), ('date_mutation', '2019-04-03'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '8000'), ('adresse_numero', '13'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'AV DE LA VAITE'), ('adresse_code_voie', '5020'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000CL0088'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '77'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.040617'), ('latitude', '47.253966')]), OrderedDict([('id_mutation', '2019-73053'), ('date_mutation', '2019-04-08'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '8000'), ('adresse_numero', '29'), ('adresse_suffixe', 'C'), ('adresse_nom_voie', 'CHE DES MONTBOUCONS'), ('adresse_code_voie', '3500'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000NT0241'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '4'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '5.98984'), ('latitude', '47.25726')]), OrderedDict([('id_mutation', '2019-73054'), ('date_mutation', '2019-03-28'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '8500'), ('adresse_numero', '10'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DES COURTILS'), ('adresse_code_voie', '1460'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000BY0153'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '106'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.046495'), ('latitude', '47.2645')]), OrderedDict([('id_mutation', '2019-73055'), ('date_mutation', '2019-04-10'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '6200'), ('adresse_numero', '31'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'AV DE CHARDONNET'), ('adresse_code_voie', '0960'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000CZ0099'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '2'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.039858'), ('latitude', '47.23115')]), OrderedDict([('id_mutation', '2019-73056'), ('date_mutation', '2019-04-03'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '155000'), ('adresse_numero', '5'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE D ALSACE'), ('adresse_code_voie', '0130'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000AH0054'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '13'), ('lot1_surface_carrez', ''), ('lot2_numero', '17'), ('lot2_surface_carrez', '68.94'), ('lot3_numero', '18'), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '3'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '70'), ('nombre_pieces_principales', '3'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.028073'), ('latitude', '47.239308')]), OrderedDict([('id_mutation', '2019-73057'), ('date_mutation', '2019-04-03'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '191933'), ('adresse_numero', '57'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'CHE DES PRES DE VAUX'), ('adresse_code_voie', '4220'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000DE0039'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '100'), ('nombre_pieces_principales', '7'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '530'), ('longitude', '6.054279'), ('latitude', '47.230811')]), OrderedDict([('id_mutation', '2019-73057'), ('date_mutation', '2019-04-03'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '191933'), ('adresse_numero', '57'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'CHE DES PRES DE VAUX'), ('adresse_code_voie', '4220'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000DE0039'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '100'), ('nombre_pieces_principales', '7'), ('code_nature_culture', 'J'), ('nature_culture', 'jardins'), ('code_nature_culture_speciale', 'POTAG'), ('nature_culture_speciale', 'Jardin potager'), ('surface_terrain', '1018'), ('longitude', '6.054279'), ('latitude', '47.230811')]), OrderedDict([('id_mutation', '2019-73057'), ('date_mutation', '2019-04-03'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '191933'), ('adresse_numero', '57'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'CHE DES PRES DE VAUX'), ('adresse_code_voie', '4220'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000DE0039'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '100'), ('nombre_pieces_principales', '7'), ('code_nature_culture', 'L'), ('nature_culture', 'landes'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '850'), ('longitude', '6.054279'), ('latitude', '47.230811')]), OrderedDict([('id_mutation', '2019-73058'), ('date_mutation', '2019-04-09'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '228000'), ('adresse_numero', '5'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE CHAMP DU SEILLER'), ('adresse_code_voie', '0077'), ('code_postal', '25640'), ('code_commune', '25508'), ('nom_commune', 'Roulans'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25508000AB0517'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '106'), ('nombre_pieces_principales', '4'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '855'), ('longitude', '6.240416'), ('latitude', '47.318954')]), OrderedDict([('id_mutation', '2019-73059'), ('date_mutation', '2019-04-08'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '150500'), ('adresse_numero', '1'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DU CHASNOT'), ('adresse_code_voie', '1130'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000BH0457'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '9'), ('lot1_surface_carrez', '67.04'), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '79'), ('nombre_pieces_principales', '3'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.02701'), ('latitude', '47.247254')]), OrderedDict([('id_mutation', '2019-73060'), ('date_mutation', '2019-04-09'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '242000'), ('adresse_numero', '17'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DU BELVEDERE'), ('adresse_code_voie', '0150'), ('code_postal', '25110'), ('code_commune', '25047'), ('nom_commune', 'Baume-les-Dames'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25047000AX0095'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '105'), ('nombre_pieces_principales', '5'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '500'), ('longitude', '6.350524'), ('latitude', '47.341083')]), OrderedDict([('id_mutation', '2019-73060'), ('date_mutation', '2019-04-09'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '242000'), ('adresse_numero', '17'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DU BELVEDERE'), ('adresse_code_voie', '0150'), ('code_postal', '25110'), ('code_commune', '25047'), ('nom_commune', 'Baume-les-Dames'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25047000AX0095'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '105'), ('nombre_pieces_principales', '5'), ('code_nature_culture', 'AG'), ('nature_culture', "terrains d'agrément"), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '1452'), ('longitude', '6.350524'), ('latitude', '47.341083')]), OrderedDict([('id_mutation', '2019-73061'), ('date_mutation', '2019-04-09'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '115000'), ('adresse_numero', '23'), ('adresse_suffixe', 'B'), ('adresse_nom_voie', 'RUE DE VESOUL'), ('adresse_code_voie', '5160'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000HW0575'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '632'), ('lot1_surface_carrez', ''), ('lot2_numero', '692'), ('lot2_surface_carrez', '62.94'), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '2'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '63'), ('nombre_pieces_principales', '3'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.019921'), ('latitude', '47.248271')]), OrderedDict([('id_mutation', '2019-73061'), ('date_mutation', '2019-04-09'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '115000'), ('adresse_numero', '21'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DE VESOUL'), ('adresse_code_voie', '5160'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000HW0575'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '461'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.019921'), ('latitude', '47.248271')]), OrderedDict([('id_mutation', '2019-73062'), ('date_mutation', '2019-04-08'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '780'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'AU PAUTET'), ('adresse_code_voie', 'B106'), ('code_postal', '25320'), ('code_commune', '25287'), ('nom_commune', 'Grandfontaine'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25287000AB0075'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'BT'), ('nature_culture', 'taillis simples'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '6'), ('longitude', '5.894675'), ('latitude', '47.199222')]), OrderedDict([('id_mutation', '2019-73063'), ('date_mutation', '2019-04-09'), ('numero_disposition', '000001'), ('nature_mutation', "Vente en l'état futur d'achèvement"), ('valeur_fonciere', '208400'), ('adresse_numero', '2'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'CHE DE LA PLANCHE'), ('adresse_code_voie', '0152'), ('code_postal', '25770'), ('code_commune', '25258'), ('nom_commune', 'Franois'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25258000AC0196'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '20'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '5.93859'), ('latitude', '47.229168')]), OrderedDict([('id_mutation', '2019-73063'), ('date_mutation', '2019-04-09'), ('numero_disposition', '000001'), ('nature_mutation', "Vente en l'état futur d'achèvement"), ('valeur_fonciere', '208400'), ('adresse_numero', '2'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'CHE DE LA PLANCHE'), ('adresse_code_voie', '0152'), ('code_postal', '25770'), ('code_commune', '25258'), ('nom_commune', 'Franois'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25258000AC0196'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '16'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '5.93859'), ('latitude', '47.229168')]), OrderedDict([('id_mutation', '2019-73063'), ('date_mutation', '2019-04-09'), ('numero_disposition', '000001'), ('nature_mutation', "Vente en l'état futur d'achèvement"), ('valeur_fonciere', '208400'), ('adresse_numero', '2'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'CHE DE LA PLANCHE'), ('adresse_code_voie', '0152'), ('code_postal', '25770'), ('code_commune', '25258'), ('nom_commune', 'Franois'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25258000AC0196'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '22'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '5.93859'), ('latitude', '47.229168')]), OrderedDict([('id_mutation', '2019-73064'), ('date_mutation', '2019-03-22'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '60000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'VILLAGE'), ('adresse_code_voie', 'B044'), ('code_postal', '25870'), ('code_commune', '25612'), ('nom_commune', 'Vieilley'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25612000AB0103'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'J'), ('nature_culture', 'jardins'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '35'), ('longitude', '6.080034'), ('latitude', '47.336893')]), OrderedDict([('id_mutation', '2019-73064'), ('date_mutation', '2019-03-22'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '60000'), ('adresse_numero', '10'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RTE DE MARCHAUX'), ('adresse_code_voie', '0028'), ('code_postal', '25870'), ('code_commune', '25612'), ('nom_commune', 'Vieilley'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25612000AB0106'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '10'), ('lot1_surface_carrez', ''), ('lot2_numero', '2'), ('lot2_surface_carrez', '135.89'), ('lot3_numero', '8'), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '3'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '126'), ('nombre_pieces_principales', '4'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.079714'), ('latitude', '47.336808')]), OrderedDict([('id_mutation', '2019-73065'), ('date_mutation', '2019-03-29'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '100000'), ('adresse_numero', '62'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'GR GRANDE RUE'), ('adresse_code_voie', '0100'), ('code_postal', '25820'), ('code_commune', '25323'), ('nom_commune', 'Laissey'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25323000AB0276'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '3'), ('lot1_surface_carrez', ''), ('lot2_numero', '4'), ('lot2_surface_carrez', '8.83'), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '2'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '106'), ('nombre_pieces_principales', '5'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.233722'), ('latitude', '47.298367')]), OrderedDict([('id_mutation', '2019-73065'), ('date_mutation', '2019-03-29'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '100000'), ('adresse_numero', '62'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'GR GRANDE RUE'), ('adresse_code_voie', '0100'), ('code_postal', '25820'), ('code_commune', '25323'), ('nom_commune', 'Laissey'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25323000AB0276'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '2'), ('lot1_surface_carrez', ''), ('lot2_numero', '8'), ('lot2_surface_carrez', '160.93'), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '2'), ('code_type_local', '4'), ('type_local', 'Local industriel. commercial ou assimilé'), ('surface_reelle_bati', '243'), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.233722'), ('latitude', '47.298367')]), OrderedDict([('id_mutation', '2019-73065'), ('date_mutation', '2019-03-29'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '100000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'CHAMP DERRIERE LA GRANGERI'), ('adresse_code_voie', 'B020'), ('code_postal', '25820'), ('code_commune', '25323'), ('nom_commune', 'Laissey'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25323000AB0280'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'J'), ('nature_culture', 'jardins'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '409'), ('longitude', '6.233939'), ('latitude', '47.298448')]), OrderedDict([('id_mutation', '2019-73066'), ('date_mutation', '2019-03-28'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '78100'), ('adresse_numero', '1'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE MARC BLOCH'), ('adresse_code_voie', '3286'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000EP0263'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '99'), ('lot1_surface_carrez', '93.7'), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '87'), ('nombre_pieces_principales', '4'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '5.969947'), ('latitude', '47.217754')]), OrderedDict([('id_mutation', '2019-73066'), ('date_mutation', '2019-03-28'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '78100'), ('adresse_numero', '1'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE MARC BLOCH'), ('adresse_code_voie', '3286'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000EP0263'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '31'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '5.969947'), ('latitude', '47.217754')]), OrderedDict([('id_mutation', '2019-73067'), ('date_mutation', '2019-03-28'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '35183.96'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'BOIS CARRE'), ('adresse_code_voie', 'C002'), ('code_postal', '25110'), ('code_commune', '25047'), ('nom_commune', 'Baume-les-Dames'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25047000BA0208'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'AB'), ('nature_culture', 'terrains a bâtir'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '980'), ('longitude', '6.33667'), ('latitude', '47.352739')]), OrderedDict([('id_mutation', '2019-73068'), ('date_mutation', '2019-02-25'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '165000'), ('adresse_numero', '47'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'LES VERNES'), ('adresse_code_voie', 'B060'), ('code_postal', '25870'), ('code_commune', '25200'), ('nom_commune', 'Devecey'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25200000AI0467'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '100'), ('nombre_pieces_principales', '5'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '523'), ('longitude', '6.011204'), ('latitude', '47.324913')]), OrderedDict([('id_mutation', '2019-73069'), ('date_mutation', '2019-03-21'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '1600'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'LES VAUCHES'), ('adresse_code_voie', 'B232'), ('code_postal', '25660'), ('code_commune', '25245'), ('nom_commune', 'Fontain'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25245000ZM0010'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'BT'), ('nature_culture', 'taillis simples'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '8341'), ('longitude', '6.022924'), ('latitude', '47.207125')]), OrderedDict([('id_mutation', '2019-73070'), ('date_mutation', '2019-04-15'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '450000'), ('adresse_numero', '8'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE JACQUARD'), ('adresse_code_voie', '2755'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000HN0161'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '378'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '4'), ('type_local', 'Local industriel. commercial ou assimilé'), ('surface_reelle_bati', '87'), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '5.994523'), ('latitude', '47.238857')]), OrderedDict([('id_mutation', '2019-73070'), ('date_mutation', '2019-04-15'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '450000'), ('adresse_numero', '8'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE JACQUARD'), ('adresse_code_voie', '2755'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000HN0161'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '378'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '4'), ('type_local', 'Local industriel. commercial ou assimilé'), ('surface_reelle_bati', '69'), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '5.994523'), ('latitude', '47.238857')]), OrderedDict([('id_mutation', '2019-73070'), ('date_mutation', '2019-04-15'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '450000'), ('adresse_numero', '8'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE JACQUARD'), ('adresse_code_voie', '2755'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000HN0161'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '378'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '4'), ('type_local', 'Local industriel. commercial ou assimilé'), ('surface_reelle_bati', '247'), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '5.994523'), ('latitude', '47.238857')]), OrderedDict([('id_mutation', '2019-73070'), ('date_mutation', '2019-04-15'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '450000'), ('adresse_numero', '8'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE JACQUARD'), ('adresse_code_voie', '2755'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000HN0161'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '378'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '4'), ('type_local', 'Local industriel. commercial ou assimilé'), ('surface_reelle_bati', '60'), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '5.994523'), ('latitude', '47.238857')]), OrderedDict([('id_mutation', '2019-73070'), ('date_mutation', '2019-04-15'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '450000'), ('adresse_numero', '8'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE JACQUARD'), ('adresse_code_voie', '2755'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000HN0161'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '393'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '4'), ('type_local', 'Local industriel. commercial ou assimilé'), ('surface_reelle_bati', '332'), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '5.994523'), ('latitude', '47.238857')]), OrderedDict([('id_mutation', '2019-73070'), ('date_mutation', '2019-04-15'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '450000'), ('adresse_numero', '8'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE JACQUARD'), ('adresse_code_voie', '2755'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000HN0161'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '394'), ('lot1_surface_carrez', ''), ('lot2_numero', '395'), ('lot2_surface_carrez', ''), ('lot3_numero', '396'), ('lot3_surface_carrez', ''), ('lot4_numero', '397'), ('lot4_surface_carrez', ''), ('lot5_numero', '399'), ('lot5_surface_carrez', ''), ('nombre_lots', '40'), ('code_type_local', '4'), ('type_local', 'Local industriel. commercial ou assimilé'), ('surface_reelle_bati', '334'), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '5.994523'), ('latitude', '47.238857')]), OrderedDict([('id_mutation', '2019-73071'), ('date_mutation', '2019-04-15'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '20000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'CONNOTIERE'), ('adresse_code_voie', 'B027'), ('code_postal', '25720'), ('code_commune', '25058'), ('nom_commune', 'Beure'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25058000AB0057'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'VE'), ('nature_culture', 'vergers'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '796'), ('longitude', '6.000663'), ('latitude', '47.211775')]), OrderedDict([('id_mutation', '2019-73072'), ('date_mutation', '2019-04-04'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '28000'), ('adresse_numero', '23'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE 7EME ARMEE AMERICAINE'), ('adresse_code_voie', '4750'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000KR0021'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '3'), ('lot1_surface_carrez', '33.95'), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '33'), ('nombre_pieces_principales', '1'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.01748'), ('latitude', '47.216813')]), OrderedDict([('id_mutation', '2019-73073'), ('date_mutation', '2019-04-11'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '110000'), ('adresse_numero', '131'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DE BELFORT'), ('adresse_code_voie', '0390'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000BP0213'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '576'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.036537'), ('latitude', '47.253709')]), OrderedDict([('id_mutation', '2019-73073'), ('date_mutation', '2019-04-11'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '110000'), ('adresse_numero', '9'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'CITE PARC DES CHAPRAIS'), ('adresse_code_voie', '0955'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000BP0213'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '251'), ('lot1_surface_carrez', ''), ('lot2_numero', '261'), ('lot2_surface_carrez', '61.58'), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '2'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '68'), ('nombre_pieces_principales', '4'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.036537'), ('latitude', '47.253709')]), OrderedDict([('id_mutation', '2019-73074'), ('date_mutation', '2019-04-11'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '100000'), ('adresse_numero', '76'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DE VESOUL'), ('adresse_code_voie', '5160'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000BL0111'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '135'), ('lot1_surface_carrez', '17.9'), ('lot2_numero', '136'), ('lot2_surface_carrez', '17.4'), ('lot3_numero', '144'), ('lot3_surface_carrez', '42.14'), ('lot4_numero', '172'), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '4'), ('code_type_local', '4'), ('type_local', 'Local industriel. commercial ou assimilé'), ('surface_reelle_bati', '44'), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.012625'), ('latitude', '47.256766')]), OrderedDict([('id_mutation', '2019-73075'), ('date_mutation', '2019-04-12'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '254500'), ('adresse_numero', '2'), ('adresse_suffixe', 'B'), ('adresse_nom_voie', 'RUE DES MAISONS NEUVES'), ('adresse_code_voie', '0029'), ('code_postal', '25320'), ('code_commune', '25147'), ('nom_commune', 'Chemaudin et Vaux'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25147000AA0231'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '130'), ('nombre_pieces_principales', '5'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '719'), ('longitude', '5.891686'), ('latitude', '47.224765')]), OrderedDict([('id_mutation', '2019-73076'), ('date_mutation', '2019-04-15'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '81150'), ('adresse_numero', '7'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'AV VILLARCEAU'), ('adresse_code_voie', '5280'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000HZ0010'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '24'), ('lot1_surface_carrez', ''), ('lot2_numero', '37'), ('lot2_surface_carrez', '53.24'), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '2'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '53'), ('nombre_pieces_principales', '2'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.008254'), ('latitude', '47.236082')]), OrderedDict([('id_mutation', '2019-73076'), ('date_mutation', '2019-04-15'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '81150'), ('adresse_numero', '7'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'AV VILLARCEAU'), ('adresse_code_voie', '5280'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000HZ0010'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '4'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.008254'), ('latitude', '47.236082')]), OrderedDict([('id_mutation', '2019-73077'), ('date_mutation', '2019-04-12'), ('numero_disposition', '000001'), ('nature_mutation', "Vente en l'état futur d'achèvement"), ('valeur_fonciere', '5000'), ('adresse_numero', '2'), ('adresse_suffixe', 'B'), ('adresse_nom_voie', 'ALL DOCTEUR MAITRE'), ('adresse_code_voie', '1612'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000BI0332'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '26'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '72'), ('nombre_pieces_principales', '3'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.020371'), ('latitude', '47.255286')]), OrderedDict([('id_mutation', '2019-73078'), ('date_mutation', '2019-04-11'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '80000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'VILLAGE'), ('adresse_code_voie', 'B044'), ('code_postal', '25870'), ('code_commune', '25612'), ('nom_commune', 'Vieilley'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25612000AB0088'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'AG'), ('nature_culture', "terrains d'agrément"), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '1294'), ('longitude', '6.080876'), ('latitude', '47.337844')]), OrderedDict([('id_mutation', '2019-73079'), ('date_mutation', '2019-04-15'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '235000'), ('adresse_numero', '14'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DE LA PEROUSE'), ('adresse_code_voie', '0109'), ('code_postal', '25660'), ('code_commune', '25395'), ('nom_commune', 'Montfaucon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25395000AC0021'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '100'), ('nombre_pieces_principales', '5'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '1052'), ('longitude', '6.086699'), ('latitude', '47.234534')]), OrderedDict([('id_mutation', '2019-73080'), ('date_mutation', '2019-03-29'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '91750'), ('adresse_numero', '22'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE TRISTAN BERNARD'), ('adresse_code_voie', '4970'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000CT0116'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '21'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '60'), ('nombre_pieces_principales', '4'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.039429'), ('latitude', '47.248472')]), OrderedDict([('id_mutation', '2019-73081'), ('date_mutation', '2019-04-12'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '222000'), ('adresse_numero', '1'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE VIEILLES PERRIERES'), ('adresse_code_voie', '5230'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000IK0080'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '12'), ('lot1_surface_carrez', '101.5'), ('lot2_numero', '6'), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '2'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '104'), ('nombre_pieces_principales', '5'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.012335'), ('latitude', '47.234135')]), OrderedDict([('id_mutation', '2019-73081'), ('date_mutation', '2019-04-12'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '222000'), ('adresse_numero', '1'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE VIEILLES PERRIERES'), ('adresse_code_voie', '5230'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000IK0080'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '82'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.012335'), ('latitude', '47.234135')]), OrderedDict([('id_mutation', '2019-73082'), ('date_mutation', '2019-04-16'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '178300'), ('adresse_numero', '24'), ('adresse_suffixe', 'B'), ('adresse_nom_voie', 'RUE DU BOCHET'), ('adresse_code_voie', '0004'), ('code_postal', '25170'), ('code_commune', '25332'), ('nom_commune', 'Lavernay'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25332000ZB0177'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '1'), ('lot1_surface_carrez', '91.3'), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '83'), ('nombre_pieces_principales', '3'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '5.824411'), ('latitude', '47.249971')]), OrderedDict([('id_mutation', '2019-73083'), ('date_mutation', '2019-04-12'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '240000'), ('adresse_numero', '2'), ('adresse_suffixe', 'D'), ('adresse_nom_voie', 'RUE DU QUETIS'), ('adresse_code_voie', '0054'), ('code_postal', '25410'), ('code_commune', '25195'), ('nom_commune', 'Dannemarie-sur-Crète'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25195000AC0303'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '106'), ('nombre_pieces_principales', '4'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '449'), ('longitude', '5.868202'), ('latitude', '47.206064')]), OrderedDict([('id_mutation', '2019-73083'), ('date_mutation', '2019-04-12'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '240000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'A LA NOUELLE'), ('adresse_code_voie', 'B062'), ('code_postal', '25410'), ('code_commune', '25195'), ('nom_commune', 'Dannemarie-sur-Crète'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25195000AC0336'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '197'), ('longitude', '5.869175'), ('latitude', '47.205804')]), OrderedDict([('id_mutation', '2019-73083'), ('date_mutation', '2019-04-12'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '240000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'A LA NOUELLE'), ('adresse_code_voie', 'B062'), ('code_postal', '25410'), ('code_commune', '25195'), ('nom_commune', 'Dannemarie-sur-Crète'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25195000AC0338'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '145'), ('longitude', '5.868669'), ('latitude', '47.206008')]), OrderedDict([('id_mutation', '2019-73084'), ('date_mutation', '2019-03-29'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '136800'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'LA COMBE CONSTANTIN'), ('adresse_code_voie', 'B042'), ('code_postal', '25360'), ('code_commune', '25446'), ('nom_commune', 'Passavant'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25446000AD0253'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '79'), ('nombre_pieces_principales', '2'), ('code_nature_culture', 'P'), ('nature_culture', 'prés'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '802'), ('longitude', '6.408359'), ('latitude', '47.287813')]), OrderedDict([('id_mutation', '2019-73084'), ('date_mutation', '2019-03-29'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '136800'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'LA COMBE CONSTANTIN'), ('adresse_code_voie', 'B042'), ('code_postal', '25360'), ('code_commune', '25446'), ('nom_commune', 'Passavant'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25446000AD0253'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '79'), ('nombre_pieces_principales', '2'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '600'), ('longitude', '6.408359'), ('latitude', '47.287813')]), OrderedDict([('id_mutation', '2019-73085'), ('date_mutation', '2019-04-03'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '7000'), ('adresse_numero', '38'), ('adresse_suffixe', 'B'), ('adresse_nom_voie', 'AV DE L ILE DE FRANCE'), ('adresse_code_voie', '2750'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000LR0042'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '45'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '5.965415'), ('latitude', '47.221549')]), OrderedDict([('id_mutation', '2019-73086'), ('date_mutation', '2019-04-11'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '73100'), ('adresse_numero', '13'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE PASTEUR'), ('adresse_code_voie', '3860'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000AB0124'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '206'), ('lot1_surface_carrez', '44.85'), ('lot2_numero', '210'), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '2'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '38'), ('nombre_pieces_principales', '2'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.022267'), ('latitude', '47.237648')]), OrderedDict([('id_mutation', '2019-73087'), ('date_mutation', '2019-04-12'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '96900'), ('adresse_numero', '13'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'CITE PARC DES CHAPRAIS'), ('adresse_code_voie', '0955'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000BP0213'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '351'), ('lot1_surface_carrez', ''), ('lot2_numero', '363'), ('lot2_surface_carrez', '53.77'), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '2'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '58'), ('nombre_pieces_principales', '3'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.036537'), ('latitude', '47.253709')]), OrderedDict([('id_mutation', '2019-73088'), ('date_mutation', '2019-04-12'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '40000'), ('adresse_numero', '37'), ('adresse_suffixe', 'B'), ('adresse_nom_voie', 'CHE DESSUS DE CHAILLUZ'), ('adresse_code_voie', '1545'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000PT0236'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '543'), ('longitude', '6.018475'), ('latitude', '47.280192')]), OrderedDict([('id_mutation', '2019-73088'), ('date_mutation', '2019-04-12'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '40000'), ('adresse_numero', '37'), ('adresse_suffixe', 'B'), ('adresse_nom_voie', 'CHE DESSUS DE CHAILLUZ'), ('adresse_code_voie', '1545'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000PT0236'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '119'), ('nombre_pieces_principales', '4'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '543'), ('longitude', '6.018475'), ('latitude', '47.280192')]), OrderedDict([('id_mutation', '2019-73088'), ('date_mutation', '2019-04-12'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '40000'), ('adresse_numero', '37'), ('adresse_suffixe', 'B'), ('adresse_nom_voie', 'CHE DESSUS DE CHAILLUZ'), ('adresse_code_voie', '1545'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000PT0236'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '543'), ('longitude', '6.018475'), ('latitude', '47.280192')]), OrderedDict([('id_mutation', '2019-73088'), ('date_mutation', '2019-04-12'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '40000'), ('adresse_numero', '37'), ('adresse_suffixe', 'B'), ('adresse_nom_voie', 'CHE DESSUS DE CHAILLUZ'), ('adresse_code_voie', '1545'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000PT0236'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '543'), ('longitude', '6.018475'), ('latitude', '47.280192')]), OrderedDict([('id_mutation', '2019-73089'), ('date_mutation', '2019-04-11'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '142000'), ('adresse_numero', '70'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DES GRANGES'), ('adresse_code_voie', '2510'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000AC0082'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '3'), ('lot1_surface_carrez', ''), ('lot2_numero', '9'), ('lot2_surface_carrez', '95.16'), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '2'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '93'), ('nombre_pieces_principales', '4'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.026867'), ('latitude', '47.236922')]), OrderedDict([('id_mutation', '2019-73090'), ('date_mutation', '2019-04-11'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '99500'), ('adresse_numero', '58'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DE VESOUL'), ('adresse_code_voie', '5160'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000BK0113'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '46'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.014931'), ('latitude', '47.254683')]), OrderedDict([('id_mutation', '2019-73090'), ('date_mutation', '2019-04-11'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '99500'), ('adresse_numero', '58'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DE VESOUL'), ('adresse_code_voie', '5160'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000BK0113'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '23'), ('lot1_surface_carrez', ''), ('lot2_numero', '40'), ('lot2_surface_carrez', '73.85'), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '2'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '80'), ('nombre_pieces_principales', '3'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.014931'), ('latitude', '47.254683')]), OrderedDict([('id_mutation', '2019-73091'), ('date_mutation', '2019-04-08'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '53000'), ('adresse_numero', '1'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DES ROCHES'), ('adresse_code_voie', '4530'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000BS0235'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '13'), ('lot1_surface_carrez', ''), ('lot2_numero', '48'), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '2'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '25'), ('nombre_pieces_principales', '1'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.035222'), ('latitude', '47.257264')]), OrderedDict([('id_mutation', '2019-73091'), ('date_mutation', '2019-04-08'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '53000'), ('adresse_numero', '1'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DES ROCHES'), ('adresse_code_voie', '4530'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000BS0235'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '78'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.035222'), ('latitude', '47.257264')]), OrderedDict([('id_mutation', '2019-73092'), ('date_mutation', '2019-03-22'), ('numero_disposition', '000002'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '500'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'AU CHATELARD'), ('adresse_code_voie', 'B040'), ('code_postal', '25870'), ('code_commune', '25133'), ('nom_commune', 'Châtillon-le-Duc'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25133000AD0235'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'BT'), ('nature_culture', 'taillis simples'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '70'), ('longitude', '6.012482'), ('latitude', '47.307348')]), OrderedDict([('id_mutation', '2019-73093'), ('date_mutation', '2019-04-05'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '155600'), ('adresse_numero', '17'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE MATHIAS ULLMANN'), ('adresse_code_voie', '3381'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000HI0069'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '12'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '5.985376'), ('latitude', '47.254924')]), OrderedDict([('id_mutation', '2019-73093'), ('date_mutation', '2019-04-05'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '155600'), ('adresse_numero', '17'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE MATHIAS ULLMANN'), ('adresse_code_voie', '3381'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000HI0069'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '44'), ('lot1_surface_carrez', '57.21'), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '57'), ('nombre_pieces_principales', '1'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '5.985376'), ('latitude', '47.254924')]), OrderedDict([('id_mutation', '2019-73094'), ('date_mutation', '2019-04-15'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '90000'), ('adresse_numero', '30'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE NARCISSE LANCHY'), ('adresse_code_voie', '3630'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000BS0237'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '16'), ('lot1_surface_carrez', ''), ('lot2_numero', '23'), ('lot2_surface_carrez', '48.11'), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '2'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '47'), ('nombre_pieces_principales', '2'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.028518'), ('latitude', '47.25699')]), OrderedDict([('id_mutation', '2019-73094'), ('date_mutation', '2019-04-15'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '90000'), ('adresse_numero', '30'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE NARCISSE LANCHY'), ('adresse_code_voie', '3630'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000BS0237'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '9'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.028518'), ('latitude', '47.25699')]), OrderedDict([('id_mutation', '2019-73095'), ('date_mutation', '2019-04-05'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '254100'), ('adresse_numero', '12'), ('adresse_suffixe', 'C'), ('adresse_nom_voie', 'RUE DU REPOS'), ('adresse_code_voie', '0150'), ('code_postal', '25720'), ('code_commune', '25058'), ('nom_commune', 'Beure'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25058000AI0070'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '121'), ('nombre_pieces_principales', '6'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '800'), ('longitude', '6.000709'), ('latitude', '47.205169')]), OrderedDict([('id_mutation', '2019-73096'), ('date_mutation', '2019-04-17'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '116000'), ('adresse_numero', '1'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE SOPHIE TREBUCHET'), ('adresse_code_voie', '4769'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000CO0142'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '406'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.056444'), ('latitude', '47.245477')]), OrderedDict([('id_mutation', '2019-73096'), ('date_mutation', '2019-04-17'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '116000'), ('adresse_numero', '3'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE SOPHIE TREBUCHET'), ('adresse_code_voie', '4769'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000CO0142'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '145'), ('lot1_surface_carrez', '10.4'), ('lot2_numero', '275'), ('lot2_surface_carrez', '56.77'), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '2'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '67'), ('nombre_pieces_principales', '3'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.056444'), ('latitude', '47.245477')]), OrderedDict([('id_mutation', '2019-73096'), ('date_mutation', '2019-04-17'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '116000'), ('adresse_numero', '1'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE SOPHIE TREBUCHET'), ('adresse_code_voie', '4769'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000CO0142'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '26'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.056444'), ('latitude', '47.245477')]), OrderedDict([('id_mutation', '2019-73097'), ('date_mutation', '2019-04-10'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '8500'), ('adresse_numero', '23'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE JEAN WYRSCH'), ('adresse_code_voie', '2860'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000BK0050'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '216'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.019662'), ('latitude', '47.258133')]), OrderedDict([('id_mutation', '2019-73098'), ('date_mutation', '2019-04-17'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '255000'), ('adresse_numero', '6'), ('adresse_suffixe', 'B'), ('adresse_nom_voie', 'CHE DES RAGOTS'), ('adresse_code_voie', '4340'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000CY0221'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '2'), ('lot1_surface_carrez', ''), ('lot2_numero', '34'), ('lot2_surface_carrez', '63.8'), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '2'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '63'), ('nombre_pieces_principales', '3'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.036715'), ('latitude', '47.2369')]), OrderedDict([('id_mutation', '2019-73098'), ('date_mutation', '2019-04-17'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '255000'), ('adresse_numero', '6'), ('adresse_suffixe', 'B'), ('adresse_nom_voie', 'CHE DES RAGOTS'), ('adresse_code_voie', '4340'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000CY0221'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '14'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.036715'), ('latitude', '47.2369')]), OrderedDict([('id_mutation', '2019-73099'), ('date_mutation', '2019-03-22'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '63990'), ('adresse_numero', '13'), ('adresse_suffixe', 'G'), ('adresse_nom_voie', 'RUE DE LA MOUILLERE'), ('adresse_code_voie', '3580'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000CW0249'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '217'), ('lot1_surface_carrez', ''), ('lot2_numero', '228'), ('lot2_surface_carrez', '28.5'), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '2'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '31'), ('nombre_pieces_principales', '1'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.032534'), ('latitude', '47.24341')]), OrderedDict([('id_mutation', '2019-73100'), ('date_mutation', '2019-04-18'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '6000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'A ROUGEAU'), ('adresse_code_voie', 'B118'), ('code_postal', '25480'), ('code_commune', '25454'), ('nom_commune', 'Pirey'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '254540000A0274'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'P'), ('nature_culture', 'prés'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '1025'), ('longitude', '5.954487'), ('latitude', '47.264545')]), OrderedDict([('id_mutation', '2019-73100'), ('date_mutation', '2019-04-18'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '6000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'A ROUGEAU'), ('adresse_code_voie', 'B118'), ('code_postal', '25480'), ('code_commune', '25454'), ('nom_commune', 'Pirey'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '254540000A0275'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'P'), ('nature_culture', 'prés'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '1000'), ('longitude', '5.954202'), ('latitude', '47.264412')]), OrderedDict([('id_mutation', '2019-73100'), ('date_mutation', '2019-04-18'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '6000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'A ROUGEAU'), ('adresse_code_voie', 'B118'), ('code_postal', '25480'), ('code_commune', '25454'), ('nom_commune', 'Pirey'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '254540000A0277'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'BT'), ('nature_culture', 'taillis simples'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '1045'), ('longitude', '5.954467'), ('latitude', '47.26385')]), OrderedDict([('id_mutation', '2019-73100'), ('date_mutation', '2019-04-18'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '6000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'A ROUGEAU'), ('adresse_code_voie', 'B118'), ('code_postal', '25480'), ('code_commune', '25454'), ('nom_commune', 'Pirey'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '254540000A0278'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'P'), ('nature_culture', 'prés'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '2065'), ('longitude', '5.954103'), ('latitude', '47.263773')]), OrderedDict([('id_mutation', '2019-73100'), ('date_mutation', '2019-04-18'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '6000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'A ROUGEAU'), ('adresse_code_voie', 'B118'), ('code_postal', '25480'), ('code_commune', '25454'), ('nom_commune', 'Pirey'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '254540000A0280'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'L'), ('nature_culture', 'landes'), ('code_nature_culture_speciale', 'FRICH'), ('nature_culture_speciale', 'Friche'), ('surface_terrain', '535'), ('longitude', '5.954069'), ('latitude', '47.26355')]), OrderedDict([('id_mutation', '2019-73100'), ('date_mutation', '2019-04-18'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '6000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'A ROUGEAU'), ('adresse_code_voie', 'B118'), ('code_postal', '25480'), ('code_commune', '25454'), ('nom_commune', 'Pirey'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '254540000A0365'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'P'), ('nature_culture', 'prés'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '1260'), ('longitude', '5.958906'), ('latitude', '47.26627')]), OrderedDict([('id_mutation', '2019-73100'), ('date_mutation', '2019-04-18'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '6000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'AU DESSUS DE ROUGEAU'), ('adresse_code_voie', 'B063'), ('code_postal', '25480'), ('code_commune', '25454'), ('nom_commune', 'Pirey'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '254540000A0392'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'T'), ('nature_culture', 'terres'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '1692'), ('longitude', '5.958642'), ('latitude', '47.264402')]), OrderedDict([('id_mutation', '2019-73100'), ('date_mutation', '2019-04-18'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '6000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'AUX ECORCHEVEY'), ('adresse_code_voie', 'B065'), ('code_postal', '25480'), ('code_commune', '25454'), ('nom_commune', 'Pirey'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '254540000A0634'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'BT'), ('nature_culture', 'taillis simples'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '2890'), ('longitude', '5.955411'), ('latitude', '47.270257')]), OrderedDict([('id_mutation', '2019-73100'), ('date_mutation', '2019-04-18'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '6000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'AUX ORBEUX'), ('adresse_code_voie', 'B001'), ('code_postal', '25480'), ('code_commune', '25454'), ('nom_commune', 'Pirey'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '254540000A0666'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'L'), ('nature_culture', 'landes'), ('code_nature_culture_speciale', 'FRICH'), ('nature_culture_speciale', 'Friche'), ('surface_terrain', '475'), ('longitude', '5.959645'), ('latitude', '47.270721')]), OrderedDict([('id_mutation', '2019-73100'), ('date_mutation', '2019-04-18'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '6000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'A VIGNOLE'), ('adresse_code_voie', 'B137'), ('code_postal', '25480'), ('code_commune', '25454'), ('nom_commune', 'Pirey'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '254540000A1422'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'L'), ('nature_culture', 'landes'), ('code_nature_culture_speciale', 'FRICH'), ('nature_culture_speciale', 'Friche'), ('surface_terrain', '870'), ('longitude', '5.96459'), ('latitude', '47.266804')]), OrderedDict([('id_mutation', '2019-73100'), ('date_mutation', '2019-04-18'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '6000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'A LAVAUX'), ('adresse_code_voie', 'B086'), ('code_postal', '25480'), ('code_commune', '25454'), ('nom_commune', 'Pirey'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '254540000B0060'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'T'), ('nature_culture', 'terres'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '4480'), ('longitude', '5.973345'), ('latitude', '47.268843')]), OrderedDict([('id_mutation', '2019-73100'), ('date_mutation', '2019-04-18'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '6000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'AUX ECOULOTTES'), ('adresse_code_voie', 'B067'), ('code_postal', '25480'), ('code_commune', '25454'), ('nom_commune', 'Pirey'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '254540000B0244'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'P'), ('nature_culture', 'prés'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '2060'), ('longitude', '5.969531'), ('latitude', '47.268075')]), OrderedDict([('id_mutation', '2019-73100'), ('date_mutation', '2019-04-18'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '6000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'AU BOUT DE LA COTE'), ('adresse_code_voie', 'B014'), ('code_postal', '25115'), ('code_commune', '25467'), ('nom_commune', 'Pouilley-les-Vignes'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '254670000B0587'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'P'), ('nature_culture', 'prés'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '3200'), ('longitude', '5.953541'), ('latitude', '47.273542')]), OrderedDict([('id_mutation', '2019-73100'), ('date_mutation', '2019-04-18'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '6000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'A ROUJAU'), ('adresse_code_voie', 'B180'), ('code_postal', '25115'), ('code_commune', '25467'), ('nom_commune', 'Pouilley-les-Vignes'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '254670000C0180'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'P'), ('nature_culture', 'prés'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '4550'), ('longitude', '5.953727'), ('latitude', '47.264398')]), OrderedDict([('id_mutation', '2019-73101'), ('date_mutation', '2019-04-17'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '6000'), ('adresse_numero', '11'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE ALFRED DE VIGNY'), ('adresse_code_voie', '0085'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000EN0513'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '282'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '4'), ('type_local', 'Local industriel. commercial ou assimilé'), ('surface_reelle_bati', '8'), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '5.9633'), ('latitude', '47.215825')]), OrderedDict([('id_mutation', '2019-73102'), ('date_mutation', '2019-04-11'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '69000'), ('adresse_numero', '26'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DE BELFORT'), ('adresse_code_voie', '0390'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000CV0029'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '20'), ('lot1_surface_carrez', ''), ('lot2_numero', '4'), ('lot2_surface_carrez', '66.83'), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '2'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '67'), ('nombre_pieces_principales', '3'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.02799'), ('latitude', '47.24718')]), OrderedDict([('id_mutation', '2019-73103'), ('date_mutation', '2019-04-18'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '182000'), ('adresse_numero', '3'), ('adresse_suffixe', 'B'), ('adresse_nom_voie', 'CHE DU CHATEAU DE VREGILLE'), ('adresse_code_voie', '1143'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000MZ0101'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '204'), ('lot1_surface_carrez', ''), ('lot2_numero', '217'), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '2'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '92'), ('nombre_pieces_principales', '4'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '5.976546'), ('latitude', '47.243245')]), OrderedDict([('id_mutation', '2019-73103'), ('date_mutation', '2019-04-18'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '182000'), ('adresse_numero', '3'), ('adresse_suffixe', 'B'), ('adresse_nom_voie', 'CHE DU CHATEAU DE VREGILLE'), ('adresse_code_voie', '1143'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000MZ0101'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '209'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '5.976546'), ('latitude', '47.243245')]), OrderedDict([('id_mutation', '2019-73103'), ('date_mutation', '2019-04-18'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '182000'), ('adresse_numero', '3'), ('adresse_suffixe', 'A'), ('adresse_nom_voie', 'CHE DU CHATEAU DE VREGILLE'), ('adresse_code_voie', '1143'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000MZ0101'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '11'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '5.976546'), ('latitude', '47.243245')]), OrderedDict([('id_mutation', '2019-73104'), ('date_mutation', '2019-04-15'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '322800'), ('adresse_numero', '181'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DE BELFORT'), ('adresse_code_voie', '0390'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000BR0125'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '113'), ('nombre_pieces_principales', '6'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '1024'), ('longitude', '6.043731'), ('latitude', '47.258293')]), OrderedDict([('id_mutation', '2019-73104'), ('date_mutation', '2019-04-15'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '322800'), ('adresse_numero', '181'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DE BELFORT'), ('adresse_code_voie', '0390'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000BR0125'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '1024'), ('longitude', '6.043731'), ('latitude', '47.258293')]), OrderedDict([('id_mutation', '2019-73105'), ('date_mutation', '2019-04-18'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '187000'), ('adresse_numero', '30'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'CHE DES TILLEROYES'), ('adresse_code_voie', '4900'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000MY0058'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '454'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '5.979454'), ('latitude', '47.241461')]), OrderedDict([('id_mutation', '2019-73105'), ('date_mutation', '2019-04-18'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '187000'), ('adresse_numero', '30'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'CHE DES TILLEROYES'), ('adresse_code_voie', '4900'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000MY0058'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '11'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '72'), ('nombre_pieces_principales', '3'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '5.979454'), ('latitude', '47.241461')]), OrderedDict([('id_mutation', '2019-73105'), ('date_mutation', '2019-04-18'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '187000'), ('adresse_numero', '30'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'CHE DES TILLEROYES'), ('adresse_code_voie', '4900'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000MY0058'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '611'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '5.979454'), ('latitude', '47.241461')]), OrderedDict([('id_mutation', '2019-73106'), ('date_mutation', '2019-03-27'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '99000'), ('adresse_numero', '9'), ('adresse_suffixe', ''), ('adresse_nom_voie', "ALL DE L'ILE AUX MOINEAUX"), ('adresse_code_voie', '2715'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000CX0203'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '3'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.034791'), ('latitude', '47.239185')]), OrderedDict([('id_mutation', '2019-73106'), ('date_mutation', '2019-03-27'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '99000'), ('adresse_numero', '9'), ('adresse_suffixe', ''), ('adresse_nom_voie', "ALL DE L'ILE AUX MOINEAUX"), ('adresse_code_voie', '2715'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000CX0203'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '103'), ('lot1_surface_carrez', '39.66'), ('lot2_numero', '72'), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '2'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '39'), ('nombre_pieces_principales', '2'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.034791'), ('latitude', '47.239185')]), OrderedDict([('id_mutation', '2019-73107'), ('date_mutation', '2019-03-27'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '246200'), ('adresse_numero', '5123'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'SUR LE RANG'), ('adresse_code_voie', 'B084'), ('code_postal', '25170'), ('code_commune', '25101'), ('nom_commune', 'Burgille'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25101000ZB0126'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '165'), ('nombre_pieces_principales', '4'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '1505'), ('longitude', '5.774606'), ('latitude', '47.264855')]), OrderedDict([('id_mutation', '2019-73108'), ('date_mutation', '2019-04-18'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '64700'), ('adresse_numero', '16'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DE VESOUL'), ('adresse_code_voie', '5160'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000BI0157'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '145'), ('lot1_surface_carrez', ''), ('lot2_numero', '171'), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '2'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '58'), ('nombre_pieces_principales', '3'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.019834'), ('latitude', '47.25063')]), OrderedDict([('id_mutation', '2019-73108'), ('date_mutation', '2019-04-18'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '64700'), ('adresse_numero', '16'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DE VESOUL'), ('adresse_code_voie', '5160'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000BI0157'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '221'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.019834'), ('latitude', '47.25063')]), OrderedDict([('id_mutation', '2019-73109'), ('date_mutation', '2019-03-26'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '43000'), ('adresse_numero', '16'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DES FRERES MERCIER'), ('adresse_code_voie', '2200'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000AZ0146'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '2'), ('lot1_surface_carrez', '20.37'), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '26'), ('nombre_pieces_principales', '1'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.01798'), ('latitude', '47.241755')]), OrderedDict([('id_mutation', '2019-73110'), ('date_mutation', '2019-04-18'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '217500'), ('adresse_numero', '22'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE JACQUES PREVERT'), ('adresse_code_voie', '2756'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000LS0309'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '115'), ('nombre_pieces_principales', '5'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '596'), ('longitude', '5.960999'), ('latitude', '47.215006')]), OrderedDict([('id_mutation', '2019-73111'), ('date_mutation', '2019-03-28'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '58000'), ('adresse_numero', '14'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE ISENBART'), ('adresse_code_voie', '2740'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000CW0002'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '167'), ('lot1_surface_carrez', ''), ('lot2_numero', '184'), ('lot2_surface_carrez', '38.88'), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '2'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '41'), ('nombre_pieces_principales', '2'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.02557'), ('latitude', '47.245773')]), OrderedDict([('id_mutation', '2019-73112'), ('date_mutation', '2019-03-28'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '232000'), ('adresse_numero', '34'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DU CORDIER'), ('adresse_code_voie', '0021'), ('code_postal', '25620'), ('code_commune', '25364'), ('nom_commune', 'Mamirolle'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25364000AD0095'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '116'), ('nombre_pieces_principales', '5'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '1029'), ('longitude', '6.154422'), ('latitude', '47.199646')]), OrderedDict([('id_mutation', '2019-73113'), ('date_mutation', '2019-03-28'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '18000'), ('adresse_numero', '17'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE COURVOISIER'), ('adresse_code_voie', '0520'), ('code_postal', '25110'), ('code_commune', '25047'), ('nom_commune', 'Baume-les-Dames'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25047000AH0121'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '1'), ('lot1_surface_carrez', '40.46'), ('lot2_numero', '2'), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '2'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '33'), ('nombre_pieces_principales', '1'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.359259'), ('latitude', '47.352842')]), OrderedDict([('id_mutation', '2019-73114'), ('date_mutation', '2019-04-05'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '125000'), ('adresse_numero', '43'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DES CRAS'), ('adresse_code_voie', '1470'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000BS0101'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '4'), ('type_local', 'Local industriel. commercial ou assimilé'), ('surface_reelle_bati', '88'), ('nombre_pieces_principales', '0'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '586'), ('longitude', '6.033604'), ('latitude', '47.256065')]), OrderedDict([('id_mutation', '2019-73114'), ('date_mutation', '2019-04-05'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '125000'), ('adresse_numero', '43'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DES CRAS'), ('adresse_code_voie', '1470'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000BS0101'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '52'), ('nombre_pieces_principales', '2'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '586'), ('longitude', '6.033604'), ('latitude', '47.256065')]), OrderedDict([('id_mutation', '2019-73114'), ('date_mutation', '2019-04-05'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '125000'), ('adresse_numero', '43'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DES CRAS'), ('adresse_code_voie', '1470'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000BS0101'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '4'), ('type_local', 'Local industriel. commercial ou assimilé'), ('surface_reelle_bati', '292'), ('nombre_pieces_principales', '0'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '586'), ('longitude', '6.033604'), ('latitude', '47.256065')]), OrderedDict([('id_mutation', '2019-73114'), ('date_mutation', '2019-04-05'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '125000'), ('adresse_numero', '43'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DES CRAS'), ('adresse_code_voie', '1470'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000BS0101'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '75'), ('nombre_pieces_principales', '4'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '586'), ('longitude', '6.033604'), ('latitude', '47.256065')]), OrderedDict([('id_mutation', '2019-73115'), ('date_mutation', '2019-04-04'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '120500'), ('adresse_numero', '2'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DU FAUBOURG'), ('adresse_code_voie', '0150'), ('code_postal', '25410'), ('code_commune', '25527'), ('nom_commune', 'Saint-Vit'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25527000AP0315'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '2'), ('lot1_surface_carrez', ''), ('lot2_numero', '3'), ('lot2_surface_carrez', '70.79'), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '2'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '70'), ('nombre_pieces_principales', '4'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '5.808852'), ('latitude', '47.180929')]), OrderedDict([('id_mutation', '2019-73116'), ('date_mutation', '2019-03-29'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '313350'), ('adresse_numero', '26'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'CHE DES JARDYS'), ('adresse_code_voie', '0043'), ('code_postal', '25870'), ('code_commune', '25133'), ('nom_commune', 'Châtillon-le-Duc'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25133000AW0040'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '119'), ('nombre_pieces_principales', '6'), ('code_nature_culture', 'AG'), ('nature_culture', "terrains d'agrément"), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '555'), ('longitude', '6.000145'), ('latitude', '47.312913')]), OrderedDict([('id_mutation', '2019-73116'), ('date_mutation', '2019-03-29'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '313350'), ('adresse_numero', '26'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'CHE DES JARDYS'), ('adresse_code_voie', '0043'), ('code_postal', '25870'), ('code_commune', '25133'), ('nom_commune', 'Châtillon-le-Duc'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25133000AW0040'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '119'), ('nombre_pieces_principales', '6'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '500'), ('longitude', '6.000145'), ('latitude', '47.312913')]), OrderedDict([('id_mutation', '2019-73117'), ('date_mutation', '2019-04-12'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '1800'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'ROIES VATAIS'), ('adresse_code_voie', 'B077'), ('code_postal', '25660'), ('code_commune', '25410'), ('nom_commune', 'Morre'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '254100000A0315'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'L'), ('nature_culture', 'landes'), ('code_nature_culture_speciale', 'FRICH'), ('nature_culture_speciale', 'Friche'), ('surface_terrain', '1030'), ('longitude', '6.066208'), ('latitude', '47.230868')]), OrderedDict([('id_mutation', '2019-73118'), ('date_mutation', '2019-04-11'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '87000'), ('adresse_numero', '23'), ('adresse_suffixe', 'B'), ('adresse_nom_voie', 'CHE DE PALENTE'), ('adresse_code_voie', '3790'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000BY0214'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '320'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.048813'), ('latitude', '47.267163')]), OrderedDict([('id_mutation', '2019-73118'), ('date_mutation', '2019-04-11'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '87000'), ('adresse_numero', '23'), ('adresse_suffixe', 'C'), ('adresse_nom_voie', 'CHE DE PALENTE'), ('adresse_code_voie', '3790'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000BY0214'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '1'), ('lot1_surface_carrez', '48.93'), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '48'), ('nombre_pieces_principales', '2'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.048813'), ('latitude', '47.267163')]), OrderedDict([('id_mutation', '2019-73119'), ('date_mutation', '2019-04-11'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '83500'), ('adresse_numero', '3'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE GARIBALDI'), ('adresse_code_voie', '2260'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000BH0133'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '9'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.026152'), ('latitude', '47.247234')]), OrderedDict([('id_mutation', '2019-73119'), ('date_mutation', '2019-04-11'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '83500'), ('adresse_numero', '3'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE GARIBALDI'), ('adresse_code_voie', '2260'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000BH0133'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '70'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.026152'), ('latitude', '47.247234')]), OrderedDict([('id_mutation', '2019-73119'), ('date_mutation', '2019-04-11'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '83500'), ('adresse_numero', '3'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE GARIBALDI'), ('adresse_code_voie', '2260'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000BH0133'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '71'), ('lot1_surface_carrez', '41.57'), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '41'), ('nombre_pieces_principales', '2'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.026152'), ('latitude', '47.247234')]), OrderedDict([('id_mutation', '2019-73120'), ('date_mutation', '2019-04-19'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '46000'), ('adresse_numero', '10'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE BERSOT'), ('adresse_code_voie', '0420'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000AI0006'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '17'), ('lot1_surface_carrez', '19.24'), ('lot2_numero', '3'), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '2'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '19'), ('nombre_pieces_principales', '1'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.027954'), ('latitude', '47.237283')]), OrderedDict([('id_mutation', '2019-73121'), ('date_mutation', '2019-04-05'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '114100'), ('adresse_numero', '5'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE THIEBAUD'), ('adresse_code_voie', '4870'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000BI0003'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '190'), ('lot1_surface_carrez', '59.62'), ('lot2_numero', '191'), ('lot2_surface_carrez', ''), ('lot3_numero', '192'), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '3'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '60'), ('nombre_pieces_principales', '4'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.017091'), ('latitude', '47.25334')]), OrderedDict([('id_mutation', '2019-73122'), ('date_mutation', '2019-04-03'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '122000'), ('adresse_numero', '4'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DE VERDUN'), ('adresse_code_voie', '5120'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000BR0041'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '26'), ('lot1_surface_carrez', ''), ('lot2_numero', '34'), ('lot2_surface_carrez', '77.87'), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '2'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '76'), ('nombre_pieces_principales', '4'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.038693'), ('latitude', '47.259475')]), OrderedDict([('id_mutation', '2019-73122'), ('date_mutation', '2019-04-03'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '122000'), ('adresse_numero', '2'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DE VERDUN'), ('adresse_code_voie', '5120'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000BR0041'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '76'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.038693'), ('latitude', '47.259475')]), OrderedDict([('id_mutation', '2019-73123'), ('date_mutation', '2019-04-19'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '180000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'AU VILLAGE'), ('adresse_code_voie', 'B182'), ('code_postal', '25750'), ('code_commune', '25022'), ('nom_commune', 'Arcey'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '250220000E0158'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'P'), ('nature_culture', 'prés'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '460'), ('longitude', '6.658575'), ('latitude', '47.519705')]), OrderedDict([('id_mutation', '2019-73123'), ('date_mutation', '2019-04-19'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '180000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'AU VILLAGE'), ('adresse_code_voie', 'B182'), ('code_postal', '25750'), ('code_commune', '25022'), ('nom_commune', 'Arcey'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '250220000E0159'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'P'), ('nature_culture', 'prés'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '655'), ('longitude', '6.658821'), ('latitude', '47.519318')]), OrderedDict([('id_mutation', '2019-73123'), ('date_mutation', '2019-04-19'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '180000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'VOIE DE L ISLE'), ('adresse_code_voie', '0020'), ('code_postal', '25750'), ('code_commune', '25022'), ('nom_commune', 'Arcey'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '250220000E0359'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'P'), ('nature_culture', 'prés'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '158'), ('longitude', '6.657489'), ('latitude', '47.519749')]), OrderedDict([('id_mutation', '2019-73123'), ('date_mutation', '2019-04-19'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '180000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'VOIE DE L ISLE'), ('adresse_code_voie', '0020'), ('code_postal', '25750'), ('code_commune', '25022'), ('nom_commune', 'Arcey'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '250220000E0664'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '3'), ('longitude', '6.657382'), ('latitude', '47.519812')]), OrderedDict([('id_mutation', '2019-73123'), ('date_mutation', '2019-04-19'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '180000'), ('adresse_numero', '5'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'VOIE DE L ISLE'), ('adresse_code_voie', '0020'), ('code_postal', '25750'), ('code_commune', '25022'), ('nom_commune', 'Arcey'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '250220000E0691'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '1290'), ('longitude', '6.657856'), ('latitude', '47.519436')]), OrderedDict([('id_mutation', '2019-73123'), ('date_mutation', '2019-04-19'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '180000'), ('adresse_numero', '5'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'VOIE DE L ISLE'), ('adresse_code_voie', '0020'), ('code_postal', '25750'), ('code_commune', '25022'), ('nom_commune', 'Arcey'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '250220000E0691'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'J'), ('nature_culture', 'jardins'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '363'), ('longitude', '6.657856'), ('latitude', '47.519436')]), OrderedDict([('id_mutation', '2019-73123'), ('date_mutation', '2019-04-19'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '180000'), ('adresse_numero', '5'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'VOIE DE L ISLE'), ('adresse_code_voie', '0020'), ('code_postal', '25750'), ('code_commune', '25022'), ('nom_commune', 'Arcey'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25022000ZD0018'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'P'), ('nature_culture', 'prés'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '1050'), ('longitude', '6.657963'), ('latitude', '47.519142')]), OrderedDict([('id_mutation', '2019-73123'), ('date_mutation', '2019-04-19'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '180000'), ('adresse_numero', '5'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'VOIE DE L ISLE'), ('adresse_code_voie', '0020'), ('code_postal', '25750'), ('code_commune', '25022'), ('nom_commune', 'Arcey'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25022000ZD0309'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '319'), ('nombre_pieces_principales', '8'), ('code_nature_culture', 'P'), ('nature_culture', 'prés'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '1696'), ('longitude', '6.65835'), ('latitude', '47.519487')]), OrderedDict([('id_mutation', '2019-73123'), ('date_mutation', '2019-04-19'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '180000'), ('adresse_numero', '5'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'VOIE DE L ISLE'), ('adresse_code_voie', '0020'), ('code_postal', '25750'), ('code_commune', '25022'), ('nom_commune', 'Arcey'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25022000ZD0309'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '4'), ('type_local', 'Local industriel. commercial ou assimilé'), ('surface_reelle_bati', '81'), ('nombre_pieces_principales', '0'), ('code_nature_culture', 'P'), ('nature_culture', 'prés'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '1696'), ('longitude', '6.65835'), ('latitude', '47.519487')]), OrderedDict([('id_mutation', '2019-73123'), ('date_mutation', '2019-04-19'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '180000'), ('adresse_numero', '5'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'VOIE DE L ISLE'), ('adresse_code_voie', '0020'), ('code_postal', '25750'), ('code_commune', '25022'), ('nom_commune', 'Arcey'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25022000ZD0309'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '1'), ('type_local', 'Maison'), ('surface_reelle_bati', '319'), ('nombre_pieces_principales', '8'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '1280'), ('longitude', '6.65835'), ('latitude', '47.519487')]), OrderedDict([('id_mutation', '2019-73123'), ('date_mutation', '2019-04-19'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '180000'), ('adresse_numero', '5'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'VOIE DE L ISLE'), ('adresse_code_voie', '0020'), ('code_postal', '25750'), ('code_commune', '25022'), ('nom_commune', 'Arcey'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25022000ZD0309'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', '4'), ('type_local', 'Local industriel. commercial ou assimilé'), ('surface_reelle_bati', '81'), ('nombre_pieces_principales', '0'), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '1280'), ('longitude', '6.65835'), ('latitude', '47.519487')]), OrderedDict([('id_mutation', '2019-73123'), ('date_mutation', '2019-04-19'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '180000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'AU VILLAGE'), ('adresse_code_voie', 'B182'), ('code_postal', '25750'), ('code_commune', '25022'), ('nom_commune', 'Arcey'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25022000ZD0312'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'P'), ('nature_culture', 'prés'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '556'), ('longitude', '6.658275'), ('latitude', '47.519052')]), OrderedDict([('id_mutation', '2019-73124'), ('date_mutation', '2019-03-29'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '80000'), ('adresse_numero', '62'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'GR GRANDE RUE'), ('adresse_code_voie', '0100'), ('code_postal', '25820'), ('code_commune', '25323'), ('nom_commune', 'Laissey'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25323000AB0276'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '11'), ('lot1_surface_carrez', ''), ('lot2_numero', '9'), ('lot2_surface_carrez', '86.43'), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '2'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '106'), ('nombre_pieces_principales', '5'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.233722'), ('latitude', '47.298367')]), OrderedDict([('id_mutation', '2019-73125'), ('date_mutation', '2019-04-09'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '20000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'VERGER DU LARD'), ('adresse_code_voie', 'B120'), ('code_postal', '25360'), ('code_commune', '25278'), ('nom_commune', 'Gonsans'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '252780000E0144'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'S'), ('nature_culture', 'sols'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '410'), ('longitude', '6.299907'), ('latitude', '47.231918')]), OrderedDict([('id_mutation', '2019-73126'), ('date_mutation', '2019-04-17'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '14000'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'GRANDS VERGERS'), ('adresse_code_voie', 'B081'), ('code_postal', '25640'), ('code_commune', '25508'), ('nom_commune', 'Roulans'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25508000AC0038'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'VE'), ('nature_culture', 'vergers'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '443'), ('longitude', '6.230661'), ('latitude', '47.316106')]), OrderedDict([('id_mutation', '2019-73127'), ('date_mutation', '2019-04-13'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '267000'), ('adresse_numero', '4'), ('adresse_suffixe', 'B'), ('adresse_nom_voie', 'RUE DES CHALETS'), ('adresse_code_voie', '0810'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000CW0212'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '3'), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '1'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.033548'), ('latitude', '47.24298')]), OrderedDict([('id_mutation', '2019-73127'), ('date_mutation', '2019-04-13'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '267000'), ('adresse_numero', '4'), ('adresse_suffixe', 'B'), ('adresse_nom_voie', 'RUE DES CHALETS'), ('adresse_code_voie', '0810'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000CW0212'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '10'), ('lot1_surface_carrez', ''), ('lot2_numero', '11'), ('lot2_surface_carrez', ''), ('lot3_numero', '12'), ('lot3_surface_carrez', ''), ('lot4_numero', '13'), ('lot4_surface_carrez', ''), ('lot5_numero', '14'), ('lot5_surface_carrez', ''), ('nombre_lots', '5'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '142'), ('nombre_pieces_principales', '3'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.033548'), ('latitude', '47.24298')]), OrderedDict([('id_mutation', '2019-73128'), ('date_mutation', '2019-04-05'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '2100'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'LES EPOISSOTTES'), ('adresse_code_voie', 'B030'), ('code_postal', '25110'), ('code_commune', '25341'), ('nom_commune', 'Lomont-sur-Crête'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '253410000D0138'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'BT'), ('nature_culture', 'taillis simples'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '6115'), ('longitude', '6.421109'), ('latitude', '47.341725')]), OrderedDict([('id_mutation', '2019-73128'), ('date_mutation', '2019-04-05'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '2100'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'LES EPOISSOTTES'), ('adresse_code_voie', 'B030'), ('code_postal', '25110'), ('code_commune', '25341'), ('nom_commune', 'Lomont-sur-Crête'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25341000ZI0003'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'BR'), ('nature_culture', 'futaies résineuses'), ('code_nature_culture_speciale', 'EPICE'), ('nature_culture_speciale', 'Epicéas'), ('surface_terrain', '3840'), ('longitude', '6.418862'), ('latitude', '47.340572')]), OrderedDict([('id_mutation', '2019-73128'), ('date_mutation', '2019-04-05'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '2100'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'LES EPOISSOTTES'), ('adresse_code_voie', 'B030'), ('code_postal', '25110'), ('code_commune', '25341'), ('nom_commune', 'Lomont-sur-Crête'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25341000ZI0004'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'BR'), ('nature_culture', 'futaies résineuses'), ('code_nature_culture_speciale', 'EPICE'), ('nature_culture_speciale', 'Epicéas'), ('surface_terrain', '6233'), ('longitude', '6.420326'), ('latitude', '47.341051')]), OrderedDict([('id_mutation', '2019-73128'), ('date_mutation', '2019-04-05'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '2100'), ('adresse_numero', ''), ('adresse_suffixe', ''), ('adresse_nom_voie', 'LES EPOISSOTTES'), ('adresse_code_voie', 'B030'), ('code_postal', '25110'), ('code_commune', '25341'), ('nom_commune', 'Lomont-sur-Crête'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25341000ZI0004'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', ''), ('lot1_surface_carrez', ''), ('lot2_numero', ''), ('lot2_surface_carrez', ''), ('lot3_numero', ''), ('lot3_surface_carrez', ''), ('lot4_numero', ''), ('lot4_surface_carrez', ''), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '0'), ('code_type_local', ''), ('type_local', ''), ('surface_reelle_bati', ''), ('nombre_pieces_principales', ''), ('code_nature_culture', 'BT'), ('nature_culture', 'taillis simples'), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', '677'), ('longitude', '6.420326'), ('latitude', '47.341051')]), OrderedDict([('id_mutation', '2019-73129'), ('date_mutation', '2019-04-19'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '170400'), ('adresse_numero', '19'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DE LA MADELEINE'), ('adresse_code_voie', '3230'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000AX0039'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '15'), ('lot1_surface_carrez', ''), ('lot2_numero', '78'), ('lot2_surface_carrez', '21.45'), ('lot3_numero', '79'), ('lot3_surface_carrez', '17.12'), ('lot4_numero', '80'), ('lot4_surface_carrez', '8'), ('lot5_numero', ''), ('lot5_surface_carrez', ''), ('nombre_lots', '4'), ('code_type_local', '3'), ('type_local', 'Dépendance'), ('surface_reelle_bati', ''), ('nombre_pieces_principales', '0'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.018385'), ('latitude', '47.240618')]), OrderedDict([('id_mutation', '2019-73129'), ('date_mutation', '2019-04-19'), ('numero_disposition', '000001'), ('nature_mutation', 'Vente'), ('valeur_fonciere', '170400'), ('adresse_numero', '19'), ('adresse_suffixe', ''), ('adresse_nom_voie', 'RUE DE LA MADELEINE'), ('adresse_code_voie', '3230'), ('code_postal', '25000'), ('code_commune', '25056'), ('nom_commune', 'Besançon'), ('code_departement', '25'), ('ancien_code_commune', ''), ('ancien_nom_commune', ''), ('id_parcelle', '25056000AX0039'), ('ancien_id_parcelle', ''), ('numero_volume', ''), ('lot1_numero', '43'), ('lot1_surface_carrez', '80.85'), ('lot2_numero', '44'), ('lot2_surface_carrez', ''), ('lot3_numero', '45'), ('lot3_surface_carrez', ''), ('lot4_numero', '46'), ('lot4_surface_carrez', ''), ('lot5_numero', '47'), ('lot5_surface_carrez', ''), ('nombre_lots', '7'), ('code_type_local', '2'), ('type_local', 'Appartement'), ('surface_reelle_bati', '84'), ('nombre_pieces_principales', '4'), ('code_nature_culture', ''), ('nature_culture', ''), ('code_nature_culture_speciale', ''), ('nature_culture_speciale', ''), ('surface_terrain', ''), ('longitude', '6.018385'), ('latitude', '47.240618')]), OrderedDict([('id_mutation', '2019-73129'), ('date_mutation', '2019-04-19'), ('numero_dispo